forked from sdatkinson/neural-amp-modeler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 928 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
# File: setup.py
# Created Date: 2020-04-08
# Author: Steven Atkinson (steven@atkinson.mn)
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",
"matplotlib",
"numpy",
"pytorch_lightning",
"scipy",
"sounddevice",
"tensorboard",
"torch",
"tqdm",
"wavio<=0.0.4", # Breaking change in 0.0.5
]
setup(
name="nam",
version=main_ns["__version__"],
description="Neural amp modeler",
author="Steven Atkinson",
author_email="steven@atkinson.mn",
url="https://github.com/sdatkinson/",
install_requires=requirements,
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"nam = nam.train.gui:run",
]
},
)