-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
49 lines (44 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
49
import os
import sys
try:
from setuptools import setup
except:
from distutils.core import setup
readme_note = '''\
.. note::
For the latest source, issues and discussion, etc, please visit the
`GitHub repository <https://github.com/pharmbio/sciluigi>`_\n\n
'''
with open('README.rst') as fobj:
long_description = readme_note + fobj.read()
setup(
name='sciluigi',
version='0.10.1',
description='Helper library for writing dynamic, flexible workflows in luigi',
long_description=long_description,
author='Samuel Lampa',
author_email='[email protected]',
url='https://github.com/pharmbio/sciluigi',
license='MIT',
keywords='workflows workflow pipeline luigi',
packages=[
'sciluigi',
],
install_requires=[
'luigi',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
],
)