-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.py
34 lines (29 loc) · 1.04 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
from setuptools import setup
import cpp2python
setup(
name='cpp2python',
version='0.2.0',
description='Helps to convert C/C++ sources to C/C++ -like Python sources.',
long_description=cpp2python.help,
url='https://github.com/hlamer/cpp2python',
author='Andrei Kopats',
author_email='[email protected]',
license='GPL',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
keywords='cpp python',
scripts=['cpp2python.py']
)