-
Notifications
You must be signed in to change notification settings - Fork 183
/
setup.py
38 lines (33 loc) · 1 KB
/
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
36
37
38
import os
import subprocess
import setuptools
# imports __version__
exec(open('rave/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-rave",
version=__version__, # type: ignore
author="Antoine CAILLON",
author_email="[email protected]",
description="RAVE: a Realtime Audio Variatione autoEncoder",
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
package_data={
'rave/configs': ['*.gin'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": [
"rave = scripts.main_cli:main",
]},
install_requires=requirements.split("\n"),
python_requires='>=3.9',
include_package_data=True,
)