-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (41 loc) · 1.32 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
from setuptools import setup, find_packages
from setuptools import Extension
from Cython.Build import cythonize
__version__ = "0.0.1"
ext_modules=[
Extension(
name='scipydepr.special.cython_special',
sources=[
'scipydepr/special/cython_special.pyx',
],
extra_compile_args=["-O2", "-fno-wrapv"])
]
setup(
name="scipydepr",
version=__version__,
description="Deprecated functions from Scipy (scipy.special) for those of us who need them",
license='BSD',
author="Rutger van Haasteren",
author_email="[email protected]",
packages=find_packages(),
url="http://github.com/vhaasteren/scipydepr/",
long_description=open("README.md").read(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
ext_modules = cythonize(ext_modules),
package_data={
"scipydepr": ["README", "LICENSE", "AUTHORS.md"],
"scipydepr.special": [
"special/cython_special.pyx",
"special/special.py",
],
},
)