forked from tbenthompson/cppimport
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.15 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.15 KB
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
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
description = open('README.md').read()
setup(
packages = ['cppimport'],
install_requires = [
'mako', 'pybind11'
],
zip_safe = False,
entry_points = {
'console_scripts': [
'cpprun=cppimport.cpprun:cpp_run'
]
},
name = 'cppimport',
version = '17.10.25',
description = 'Import C++ files directly from Python!',
long_description = description,
url = 'https://github.com/tbenthompson/cppimport',
author = 'T. Ben Thompson',
author_email = 't.ben.thompson@gmail.com',
license = 'MIT',
platforms = ['any'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: C++'
]
)