-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
60 lines (53 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
from io import open
import os.path as osp
from setuptools import setup
HERE = osp.abspath(osp.dirname(__file__))
sys.path.insert(0, HERE)
import setuptools_cythonize
def main():
setup(
name="setuptools-cythonize",
version=setuptools_cythonize.__version__,
description=setuptools_cythonize.__doc__.strip(),
long_description=open(osp.join(HERE, 'README.rst'), encoding='utf-8').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Natural Language :: English',
'Topic :: System :: Installation/Setup',
],
author="Antoine Rousseaux",
url="https://github.com/anxuae/setuptools-cythonize",
download_url="https://github.com/anxuae/setuptools-cythonize/archive/{}.tar.gz".format(
setuptools_cythonize.__version__),
license='MIT license',
platforms=['unix', 'linux', 'darwin', 'win32'],
keywords=[
'setup',
'install',
'compilation',
],
py_modules=["setuptools_cythonize"],
include_package_data=True,
install_requires=[
'setuptools>=36.2.0',
'wheel>=0.29.0',
'cython>=0.25.2'
],
options={
'bdist_wheel':
{'universal': True}
},
zip_safe=False, # Don't install the lib as an .egg zipfile
)
if __name__ == '__main__':
main()