-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (30 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·34 lines (30 loc) · 1.04 KB
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
from distutils.core import setup
with open('README') as file:
__desc__ = file.read()
__classifiers__ = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving :: Compression',
'Topic :: Utilities',
]
module_description = \
'A module providing arithmetic coding to compress/decompress files.',
setup(
name='arcode',
version='0.3',
description=module_description,
author='Michael Dipperstein',
author_email='mdipperstein@gmail.com',
license='GPL',
url='https://michaeldipperstein.github.io/arithmetic.html',
packages=['arcode', ],
package_data={'arcode': ['COPYING', 'README']},
platforms='All platforms',
long_description=__desc__,
classifiers=__classifiers__,
)