-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·43 lines (41 loc) · 1.74 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
#!/usr/bin/env python
# Copyright 2015 Mark Moll
# Copyright 2004-2008 Roman Yakovenko.
# Distributed under the Boost Software License, Version 1.0.
# See http://www.boost.org/LICENSE_1_0.txt
from setuptools import setup
setup(name = "pyplusplus",
version = "1.8.7",
author="Roman Yakovenko",
author_email="roman.yakovenko@gmail.com",
maintainer="Mark Moll",
maintainer_email="mark.moll@gmail.com",
description="Py++ is a framework of components for creating a C++ code generator using the Boost.Python library",
url="https://github.com/ompl/pyplusplus",
download_url="https://github.com/ompl/pyplusplus/archive/1.8.7.zip",
license="Boost",
keywords="C++, declaration parser, python bindings",
packages=['pyplusplus',
'pyplusplus.file_writers',
'pyplusplus.code_creators',
'pyplusplus.creators_factory',
'pyplusplus.code_repository',
'pyplusplus.code_repository.indexing_suite',
'pyplusplus.decl_wrappers',
'pyplusplus.module_builder',
'pyplusplus.utils',
'pyplusplus.function_transformers',
'pyplusplus._logging_',
'pyplusplus.messages',
'pyplusplus.binary_parsers'],
install_requires=['pygccxml'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Software Development"]
)