-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (36 loc) · 1.17 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
#!/usr/bin/env python
import os
from setuptools import setup
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
version_fname = os.path.join(THIS_DIR, 'flowws', 'version.py')
with open(version_fname) as version_file:
exec(version_file.read())
readme_fname = os.path.join(THIS_DIR, 'README.md')
with open(readme_fname) as readme_file:
long_description = readme_file.read()
setup(name='flowws',
author='Matthew Spellings',
author_email='matthew.p.spellings@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
description='Library for development of stage-based scientific workflows',
entry_points={
'console_scripts': [
'flowws_run = flowws.run:main',
'flowws_freeze = flowws.freeze:main',
],
},
extras_require={},
install_requires=[],
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
packages=[
'flowws',
],
python_requires='>=3',
version=__version__
)