-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (61 loc) · 2.41 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
61
62
63
64
65
66
67
#!/usr/bin/env python
import os
import sys
import platform
from setuptools import setup, find_packages
repo_base_dir = os.path.abspath(os.path.dirname(__file__))
# pull in the packages metadata
package_about = {}
with open(os.path.join(repo_base_dir, "gksol", "__about__.py")) as about_file:
exec(about_file.read(), package_about)
with open(os.path.join(repo_base_dir, 'README.rst'), 'r') as README:
long_description = README.read()
cmdclass = {}
extensions = []
# CPython/PyPy
dependencies = ['cpy2py']
if platform.python_implementation() == 'CPython':
dependencies.append('cython')
dependencies.append('matplotlib')
import Cython.Distutils
from distutils.extension import Extension
for file_path in (os.path.join('gksol', 'compiled.pyx'),):
module_path = os.path.splitext(file_path)[0].replace(os.sep, '.')
for compiled_file in (os.path.splitext(file_path)[0] + ext for ext in ('.so', '.c')):
if os.path.isfile(compiled_file):
os.unlink(compiled_file)
extensions.append(Extension(name=module_path, sources=[file_path]))
if extensions:
cmdclass = {'build_ext': Cython.Distutils.build_ext}
if __name__ == '__main__':
setup(
name=package_about['__title__'],
version=package_about['__version__'],
description=package_about['__summary__'],
long_description=long_description.strip(),
author=package_about['__author__'],
author_email=package_about['__email__'],
url=package_about['__url__'],
packages=find_packages(),
ext_modules=extensions,
cmdclass=cmdclass,
# dependencies
install_requires=dependencies,
# metadata for package search
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Education',
'Topic :: Education',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
keywords=package_about['__keywords__'],
# unit tests
test_suite='gksol.gksol_unittests',
)