forked from dol-sen/pyDeComp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (35 loc) · 1.16 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
#!/usr/bin/env python
'''
setup.py
'''
import sys
from distutils.core import setup
from DeComp import __version__, __license__
# this affects the names of all the directories we do stuff with
sys.path.insert(0, './')
#__version__ = os.getenv('VERSION', default='9999')
setup(
name='pyDeComp',
version=__version__,
description="A Python library for subprocessing various compression "
"and decompression routines. Including generating contents listings",
author='Brian Dolbec',
author_email='[email protected]',
url="https://github.com/dol-sen/pyDeComp",
packages=['DeComp'],
license=__license__,
long_description=open('README').read(),
keywords='archive',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Compression',
],
)