-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 823 Bytes
/
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
from setuptools import setup
import sys
import pypeline
setup(
name = "Pypeline",
version = pypeline.version,
url = 'http://github.com/squioc/Pypeline',
author = 'Sebastien Quioc',
author_email = '[email protected]',
description = "",
long_description=open('README.md').read(),
packages = ['pypeline'],
include_package_data = True,
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: ',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)