forked from hdb/fastmask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 793 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
exec(open('fastmask/version.py').read())
setup(
name='fastmask',
version=__version__,
description='Python library + CLI for Fastmail masked email',
long_description=long_description,
long_description_content_type="text/markdown",
author='Hudson Bailey',
author_email='[email protected]',
url='https://github.com/hdb/fastmask',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'requests',
'python-dotenv',
'rich',
'pandas',
],
entry_points={
'console_scripts': [
'fastmask = fastmask.cli:cli',
],
},
)