-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·49 lines (42 loc) · 1.33 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
#! /usr/bin/env python
"""benchpy is a library for statistical benchmarking in Python."""
from setuptools import setup
from Cython.Build import cythonize
DISTNAME = "benchpy"
DESCRIPTION = __doc__
LONG_DESCRIPTION = open("README.rst").read()
MAINTAINER = "Ann Atamanova"
MAINTAINER_EMAIL = "anne.atamanova@gmail.com"
LICENSE = "MIT"
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License"
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
]
setup_options = dict(
name="benchpy",
version="0.1.0",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url="https://github.com/atanna/benchpy",
packages=["benchpy"],
classifiers=CLASSIFIERS,
ext_modules=cythonize("benchpy/_speedups.pyx"),
install_requires=["numpy", "scipy", "prettytable"],
extras_require={
"docs": ["Sphinx", "numpydoc"]
}
)
if __name__ == "__main__":
setup(**setup_options)