-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 852 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
30
31
32
33
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from setuptools_rust import Binding, RustExtension
setup(
name='q5',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
rust_extensions=[
RustExtension(
'q5.engine',
path='Cargo.toml',
binding=Binding.PyO3,
debug=False,
)
],
license='MIT',
python_requires='>=3.8',
install_requires=[
'numpy>=1.20'
],
classifiers=[
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Sound/Audio'
]
)