-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (29 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
30
31
32
from distutils.core import setup
VERSION = '0.3-dev'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: System :: Archiving',
'Topic :: System :: Software Distribution',
]
setup(
name = 'python-archive',
version = VERSION,
classifiers = CLASSIFIERS,
author = 'Gary Wilson Jr.',
author_email = '[email protected]',
packages = ['archive'],
url = 'https://github.com/gdub/python-archive',
license = 'MIT License',
description = ('Simple library that provides a common interface for'
' extracting zip and tar archives.'),
long_description = open('README.rst').read(),
tests_require=["tox", "pytest", "pep8"],
)