-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 890 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 890 Bytes
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
import os
import subprocess
import setuptools
# imports __version__
exec(open('vschaos/version.py').read())
with open("README.md", "r") as readme:
readme = readme.read()
with open("requirements.txt", "r") as requirements:
requirements = requirements.read()
setuptools.setup(
name="acids-vschaos2",
version=__version__, # type: ignore
author="Axel Chemla--Romeu-Santos",
author_email="chemla@ircam.fr",
description="vschaos2: vintage neural audio synthesis",
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=requirements.split("\n"),
python_requires='>=3.8',
include_package_data=True,
)