-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (26 loc) · 935 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
24
25
26
27
from distutils.core import setup
setup(
name='pygrametl',
version='2.2',
author='Aalborg University',
author_email='[email protected]',
packages=['pygrametl'],
url='http://pygrametl.org/',
license='BSD',
description='ETL programming in Python',
long_description=open('README.txt').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Java',
'Programming Language :: Python',
'Programming Language :: Python :: 3.3',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)