-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 986 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
import io
import os
from setuptools import setup
def read(*paths, **kwargs):
"""Read the contents of a text file safely."""
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="compregan",
version="0.0.1",
author="Jonas Hajek-Lellmann",
author_email="[email protected]",
description="T B I",
keywords="compression gan",
packages=['compregan', 'test'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
],
install_requires=read_requirements("requirements.txt"),
extras_require={"test": read_requirements("requirements-test.txt")},
)