forked from inducer/codepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.22 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name="codepy",
version="2019.1",
description="Generate and execute native code at run time.",
long_description=open("README.rst", "rt").read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
author=u"Andreas Kloeckner",
url="http://mathema.tician.de/software/codepy",
author_email="[email protected]",
license="MIT",
packages=["codepy", "codepy.cgen"],
install_requires=[
"pytools>=2015.1.2",
"numpy>=1.6",
"appdirs>=1.4.0",
"six",
"cgen",
],
include_package_data=True,
package_data={
"codepy": [
"include/codepy/*.hpp",
]
},
zip_safe=False)