forked from fabric8-analytics/fabric8-gemini-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (32 loc) · 1.21 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
37
38
39
#!/usr/bin/env python3
"""Project setup file for the analytics server project."""
from setuptools import setup, find_packages
def get_requirements():
"""Parse all packages mentioned in the 'requirements.txt' file."""
with open('requirements.txt') as fd:
lines = fd.read().splitlines()
reqs, dep_links = [], []
for line in lines:
if line.startswith('git+'):
dep_links.append(line)
else:
reqs.append(line)
return reqs, dep_links
# pip doesn't install from dependency links by default, so one should install dependencies by
# `pip install -r requirements.txt`, not by `pip install .`
# See https://github.com/pypa/pip/issues/2023
reqs, dep_links = get_requirements()
setup(
name='gemini-server',
version='0.1',
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=reqs,
dependency_links=dep_links,
include_package_data=True,
author='Samuzzal Choudhury',
author_email='[email protected]',
description='fabric8-analytics Gemini API Server',
license='GPLv3',
keywords='fabric8 analytics Gemini Server',
url='https://github.com/fabric8-analytics/fabric8-gemini-server'
)