-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
21 lines (20 loc) · 830 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
from setuptools_rust import Binding, RustExtension
setup(name='cpp-demangle',
author="Ben Frederickson",
author_email="[email protected]",
url='http://github.com/benfred/py-cpp-demangle/',
description="A package for demangling C++ linker symbols",
long_description=open("README.rst").read(),
version="0.1.2",
rust_extensions=[RustExtension('cpp_demangle', 'Cargo.toml', binding=Binding.PyO3)],
test_suite="tests",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"],
zip_safe=False)