-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (54 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
import setuptools
from pathlib import Path
here = Path(__file__).parent
# Get the long description from the README file
with open(here / 'README.txt', encoding='utf-8') as f:
long_description = f.read()
with open(here / 'layerstack' / '_version.py', encoding='utf-8') as f:
version = f.read()
version = version.split()[2].strip('"').strip("'")
setuptools.setup(
name = 'layerstack',
version = version,
author = 'Elaine Hale, Michael Rossol',
author_email = '[email protected]',
packages = setuptools.find_packages(),
python_requires='>=3.6',
url = 'https://github.com/Smart-DS/layerstack',
description = 'Python package for assembling, sharing, and running workflows, especially those associated with modifying, running, and analyzing simulation models',
long_description = long_description,
package_data = {
'': ['LICENSE'],
'layerstack': ['*.template'],
'layerstack.tests': ['layer_library/*/layer.py',
'stack_library/*.json']
},
install_requires=[
'jinja2'
],
extras_require={
'dev': [
'ghp-import',
'numpydoc',
'pandoc',
'pytest',
'pytest-ordering',
'sphinx',
'sphinx_rtd_theme',
'twine',
'wheel'
]
},
entry_points={
'console_scripts': [
'layerstack_stack=layerstack.stack:main'
]
},
classifiers=[
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)