-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 774 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
from sys import version
if version < '2.2.3':
from distutils.dist import DistributionMetadata
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
setup(name = 'rsarm',
version = '0.9',
description = 'Reed Solomon Armor',
author = 'Jasper Spaans',
author_email = 'j@jasper.es',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2',
],
packages = ['rsarm'],
requires = ['reedsolomon'],
entry_points={ 'console_scripts': ['rsarm = rsarm.rsarm:main' ] },
)