-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (43 loc) · 1.49 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
import os
from setuptools import setup
ROOT = os.path.dirname(os.path.realpath(__file__))
setup(
name='pyboost',
description="C++Boost as a Python package",
author="Stefan Zimmermann",
author_email="[email protected]",
url="https://github.com/zimmermanncode/pyboost",
license='LGPLv3',
setup_requires=open(os.path.join(ROOT, 'requirements.setup.txt')).read(),
install_requires=open(os.path.join(ROOT, 'requirements.txt')).read(),
use_scm_version={
'local_scheme': lambda _: '',
'write_to': 'Boost/__version__.py',
},
packages=[
'Boost',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved'
' :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Topic :: Software Development',
'Topic :: Utilities',
],
keywords=[
'pyboost', 'boost', 'python3', 'packaging',
'c++', 'cpp', 'cxx', 'cplusplus',
'libraries', 'libs', 'library', 'lib',
'boostpython',
],
)