-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·46 lines (40 loc) · 1.28 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf8') as f:
long_description = f.read()
setup(
name='rtrlib',
version='0.1',
description='rtrlib binding',
long_description=long_description,
author='Marcel Röthke',
author_email='[email protected]',
url='https://github.com/mroethke/rtrlib-python',
packages=['rtrlib'],
include_package_data=True,
license='MIT',
zip_safe=False,
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
),
setup_requires=["cffi>=1.6.0"],
cffi_modules=["ffi_build.py:ffibuilder"],
install_requires=[
"cffi>=1.6.0",
"six",
'enum34; python_version < "3.4.0"'
],
test_suite="tests.suite"
)