forked from OpenMS/autowrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.63 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
# encoding: utf-8
# the following import fixes/avoids some nostests issue
# see
try:
import multiprocessing
except ImportError:
pass
from setuptools import find_packages, setup
# DO NOT FORGET TO BUMP THE VERSION IN version.py !!!!!!!!!!!!!!!!!!!
VERSION = (0, 21, 0)
# DO NOT FORGET TO BUMP THE VERSION IN version.py !!!!!!!!!!!!!!!!!!!
setup(
name="autowrap",
version="%d.%d.%d" % VERSION,
maintainer="Uwe Schmitt",
maintainer_email="[email protected]",
license="http://opensource.org/licenses/BSD-3-Clause",
platforms=["any"],
description="Generates Python Extension modules from commented Cython PXD files",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Code Generators",
],
long_description="""
autowrap automatically generates python extension modules for wrapping
C++ libraries based on annotated (commented) cython pxd files. """,
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True, # see MANIFEST.in
zip_safe=False,
test_suite="nose.collector",
install_requires=["Cython>=0.19"],
entry_points={"console_scripts": ["autowrap = autowrap.Main:main"]},
)