-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (42 loc) · 1.55 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# Based on codepy's setup.py (see http://mathema.tician.de/software/codepy)
import distribute_setup
import asp
distribute_setup.use_setuptools()
from setuptools import setup
import glob
setup(name="asp",
version=asp.__version__,
description="ASP is a SEJITS (specialized embedded just-in-time compiler) toolkit for Python.",
long_description="""
See http://www.armandofox.com/geek/home/sejits/ for more about SEJITS, including links to
publications. See http://github.com/shoaibkamil/asp/wiki for more about ASP.
""",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
author=u"Shoaib Kamil, Derrick Coetzee, Henry Cook, and others",
url="http://github.com/shoaibkamil/asp/wiki/",
author_email="[email protected]",
license = "BSD",
packages=["asp", "asp.codegen", "asp.codegen.templating", "asp.jit", "asp.ply"],
install_requires=[
"numpy",
"codepy",
"unittest2",
"mako",
"mock",
"discover",
"PyYAML"
],
# data_files=[("include/codepy", glob.glob("include/codepy/*.hpp"))],
)