-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
35 lines (27 loc) · 1004 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
import io
import os
from setuptools import find_packages, setup
for line in open("snac/__init__.py"):
line = line.strip()
if "__version__" in line:
context = {}
exec(line, context)
VERSION = context["__version__"]
def read(*paths, **kwargs):
with io.open(os.path.join(os.path.dirname(__file__), *paths), encoding=kwargs.get("encoding", "utf8")) as open_file:
content = open_file.read().strip()
return content
def read_requirements(path):
return [line.strip() for line in read(path).split("\n") if not line.startswith(('"', "#", "-", "git+"))]
setup(
name="snac",
version=VERSION,
author="Hubert Siuzdak",
author_email="hubert.siuzdak@gmail.com",
description="Multi-Scale Neural Audio Codec",
url="https://github.com/hubertsiuzdak/snac",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=read_requirements("requirements.txt"),
)