forked from ntoll/foox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.01 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.01 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
#!/usr/bin/env python
from distutils.core import setup
from foox.version import get_version
setup(
name='Foox',
version=get_version(),
description='Creates species counterpoint with a genetic algorithm.',
long_description=open('README.rst').read(),
author='Nicholas H.Tollervey',
author_email='ntoll@ntoll.org',
url='http://packages.python.org/foox',
packages=['foox', 'foox/species'],
scripts=['bin/foox', 'bin/wordolution'],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Artistic Software',
'Topic :: Education',
'Topic :: Internet',
'Topic :: Multimedia :: Sound/Audio :: MIDI',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)