pyo3/examples/word-count/setup.py

22 lines
623 B
Python
Raw Normal View History

2017-07-23 05:32:18 +00:00
from setuptools import setup
2020-11-09 21:46:25 +00:00
from setuptools_rust import RustExtension
2017-07-23 05:32:18 +00:00
setup(
2018-07-30 20:52:22 +00:00
name="word-count",
version="0.1.0",
2017-07-23 05:32:18 +00:00
classifiers=[
2018-07-30 20:52:22 +00:00
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Rust",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
2017-07-23 05:32:18 +00:00
],
2018-07-30 20:52:22 +00:00
packages=["word_count"],
rust_extensions=[RustExtension("word_count.word_count", "Cargo.toml", debug=False)],
2017-07-23 05:32:18 +00:00
include_package_data=True,
zip_safe=False,
)