forked from DagsHub/fds
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.26 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import setuptools
from fds.version import __version__
try:
with open('README.md', 'r') as readme:
long_description = readme.read()
except Exception:
long_description = None
with open('requirements.txt') as f:
requirements = f.readlines()
setuptools.setup(
name="fastds",
version=__version__,
author="DAGsHub",
license='MIT License',
author_email="[email protected]",
description="Command line wrapper for git and dvc",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/DAGsHub/fds",
packages=setuptools.find_packages(exclude=("tests",)),
entry_points={
'console_scripts': [
'fds=fds.cli:main',
'sdf=fds.cli:main'
]
},
install_requires=requirements,
zip_safe=False,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.8'
)