forked from sdatkinson/neural-amp-modeler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 977 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
36
37
38
39
40
41
42
# File: setup.py
# Created Date: 2020-04-08
# Author: Steven Atkinson ([email protected])
from distutils.util import convert_path
from setuptools import setup, find_packages
main_ns = {}
ver_path = convert_path("nam/_version.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
requirements = [
"auraloss==0.3.0",
"matplotlib",
"numpy",
"pydantic",
"pytorch_lightning",
"scipy",
"sounddevice",
"tensorboard",
"torch",
"tqdm",
"wavio>=0.0.5", # Breaking change with older versions
]
setup(
name="neural-amp-modeler",
version=main_ns["__version__"],
description="Neural amp modeler",
author="Steven Atkinson",
author_email="[email protected]",
url="https://github.com/sdatkinson/",
install_requires=requirements,
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"nam = nam.train.gui:run",
]
},
)