forked from shoaibkamil/asp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (36 loc) · 1.45 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
#!/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://aspsejits.pbworks.com/w/page/31670594/FrontPage 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, Henry Cook, and others",
url="http://aspsejits.pbworks.com/w/page/31670594/FrontPage",
author_email="[email protected]",
license = "BSD",
packages=["asp", "asp.codegen", "asp.codegen.templating", "asp.jit"],
# install_requires=[
# "pytools>=8",
# ],
# data_files=[("include/codepy", glob.glob("include/codepy/*.hpp"))],
)