forked from DLHub-Argonne/dlhub_cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (46 loc) · 1.37 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
47
48
import os
from setuptools import setup, find_packages
# single source of truth for package version
version_ns = {}
with open(os.path.join("dlhub_cli", "version.py")) as f:
exec(f.read(), version_ns)
version = version_ns['__version__']
setup(
name="dlhub_cli",
version=version,
packages=find_packages(exclude=['tests', 'tests.*']) + ['dlhub_cli.commands.init_templates'],
install_requires=[
'click>=6.6,<7.0',
'requests>=2.0.0,<3.0.0',
'dlhub_sdk>=0.6.0',
'pyyaml>=4.2b1',
'tabulate'
],
entry_points={
'console_scripts': ['dlhub = dlhub_cli:cli_root']
},
package_data={
'dlhub_cli.commands.init_templates': ['*.template']
},
# descriptive info, non-critical
description="DLHub CLI",
long_description=open("README.md").read(),
author="Ryan Chard",
author_email="[email protected]",
url="https://github.com/DLHub-Argonne/dlhub_cli",
python_requires=">=3.4",
keywords=[
"DLHub",
"Data and Learning Hub for Science",
"machine learning",
"data publication",
"reproducibility",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python",
],
)