forked from thoth-station/analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (29 loc) · 1.01 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
import os
from setuptools import setup
def get_install_requires():
with open('requirements.txt', 'r') as requirements_file:
# TODO: respect hashes in requirements.txt file
res = requirements_file.readlines()
return [req.split(' ', maxsplit=1)[0] for req in res if req]
def get_version():
with open(os.path.join('thoth', 'analyzer', '__init__.py')) as f:
content = f.readlines()
for line in content:
if line.startswith('__version__ ='):
# dirty, remove trailing and leading chars
return line.split(' = ')[1][1:-2]
raise ValueError("No version identifier found")
setup(
name='thoth-analyzer',
version=get_version(),
description='Analyzer library for project Thoht.',
long_description='Analyzer library for project Thoht.',
author='Fridolin Pokorny',
author_email='[email protected]',
license='GPLv3+',
packages=[
'thoth.analyzer',
],
zip_safe=False,
install_requires=get_install_requires()
)