-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 967 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
34
35
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="qoa",
version="0.1.0",
packages=["qoa"],
description="A library for reading and writing QOA files",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/HaxelWorks/qoa-python",
author="Axel Roijers",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: File Formats",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: System :: Archiving :: Compression",
"License :: OSI Approved :: MIT License",
],
setup_requires=[
"cffi>=1.16.0",
],
install_requires=[
"cffi>=1.16.0",
"numpy>=1.26.0",
],
cffi_modules=[
"qoa/ffi_builder.py:ffibuilder",
],
)