-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (31 loc) · 1.11 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/python3
"""Project setup file for the release monitor project."""
import os
from setuptools import setup, find_packages
def get_requirements():
"""Gather requirements for the module."""
requirements_txt = os.path.join(
os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_txt) as fd:
lines = fd.read().splitlines()
return list(line for line in lines if not line.startswith('#'))
setup(
name='fabric8-analytics-release-monitor',
version='0.1',
packages=find_packages(),
install_requires=get_requirements(),
include_package_data=True,
author='Tomas Hrcka',
author_email='[email protected]',
description='fabric8-analytics pypi npm new releases monitor',
license='ASL 2.0',
keywords='fabric8 analytics',
url='https://github.com/fabric8-analytics/'
'fabric8-analytics-release-monitor',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Intended Audience :: Developers",
]
)