-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 1.03 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
cwd = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(cwd, 'README.rst')).read()
setup(
name='reliure',
version='16.12.r0',
description="Minimal framework to manage data processing pipelines",
long_description=readme,
author='KodexLab',
author_email='[email protected]',
url='https://github.com/kodexlab/reliure',
packages=['reliure'] + ['reliure.%s' % submod for submod in find_packages('reliure')],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
install_requires=['six'],
)