-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (38 loc) · 1.2 KB
/
setup.py
File metadata and controls
executable file
·47 lines (38 loc) · 1.2 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
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
if sys.version_info[0] < 3:
print("This module requires Python >= 3.0")
sys.exit(0)
description = """
Classes teaching information and coding theory.
"""
options = dict(
name='pycoding',
version='0.1',
description='Classes teaching information and coding theory',
long_description=description,
license='GNU General Public License (GPL)',
author='Arpad Horvath',
author_email='horvath.arpad.szfvar@gmail.com',
url='http://github.com/horvatha/coding',
# package_dir={'igraph': 'igraph'},
packages=['coding'],
# scripts=['scripts/igraph'],
# test_suite="igraph.test.suite",
platforms='ALL',
keywords=['math', 'information theory'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
]
)
setup(**options)