-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·65 lines (60 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
import os
import sys
import platform
from setuptools import setup, find_packages
from setuptools.extension import Extension
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, "graphi", "__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()
# setuptools.Extension automatically falls back to using .c files
# if Cython is not available to handle .pyx
CEXTENSIONS = [
Extension(
'graphi.types.cython_graph.plain_graph',
['graphi/types/cython_graph/plain_graph.pyx'],
)
] if platform.python_implementation() == 'CPython' else []
install_requires = ['six']
if sys.version_info < (3, 4):
install_requires.append('singledispatch')
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(),
# dependencies
install_requires=install_requires,
ext_modules=CEXTENSIONS,
zip_safe=False,
# metadata for package search
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Monitoring',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=package_about['__keywords__'],
# unit tests
test_suite='graphi_unittests',
# use unittest backport to have subTest etc.
tests_require=['unittest2'] if sys.version_info < (3, 4) else [],
)