-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
29 lines (27 loc) · 912 Bytes
/
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
from setuptools import setup
version = open("VERSION").read()
description = open("README.md").read()
setup(
packages=["rustimport", "rustimport.pre_processing"],
install_requires=["toml>=0.10.2"],
zip_safe=False,
name="rustimport",
version=version,
description="Import Rust files directly from Python!",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/mityax/rustimport",
author="mityax",
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 :: 3",
"Programming Language :: Rust",
],
)