forked from bauman/python-idzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 978 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
28
29
30
#!/usr/bin/python
from setuptools import setup, find_packages
VERSION = "0.3.7"
setup(
name = "python-idzip",
version = VERSION,
packages=find_packages(),
entry_points={
"console_scripts": [
"idzip = idzip.command:main"
]
},
description = 'DictZip - Random Access gzip files',
author = 'Rik Faith',
maintainer= 'Dan Bauman',
maintainer_email='[email protected]',
license='MIT',
url = 'https://github.com/bauman/python-idzip',
download_url = 'https://github.com/bauman/python-idzip/archive/%s.tar.gz' %(VERSION),
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
scripts=['bin/idzip']
)