forked from LSSTDESC/ceci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.31 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
#!/usr/bin/env python
"""
Lightweight pipeline engine for LSST DESC
Copyright (c) 2018-2020 LSST DESC
http://opensource.org/licenses/MIT
"""
from setuptools import setup
from io import open
# read the contents of the README file
with open('README.md', encoding="utf-8") as f:
long_description = f.read()
setup(
name='ceci',
description='Lightweight pipeline engine for LSST DESC',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/LSSTDESC/ceci',
maintainer='Joe Zuntz',
license='BSD',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Development Status :: 3 - Alpha',
],
packages=['ceci', 'ceci.sites'],
entry_points={
'console_scripts':['ceci=ceci.main:main']
},
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=['pyyaml', 'psutil'],
extras_require={
'parsl': ['flask', 'parsl>=1.0.0'],
'cwl': ['cwlgen>=0.4', 'cwltool>=2.0.20200126090152'],
'test': ['pytest', 'codecov', 'pytest-cov'],
}
)