We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31c2a18 commit 6ea4534Copy full SHA for 6ea4534
setup.py
@@ -1,5 +1,10 @@
1
+import os
2
from setuptools import setup, find_packages
3
4
+requirements_txt = os.path.dirname(os.path.realpath(__file__)) + '/requirements.txt'
5
+with open(requirements_txt, "rt") as f:
6
+ install_requires = f.read().splitlines()[1:]
7
+
8
setup(name='grafoleancollector',
9
version='@@VERSION@@',
10
url='https://gitlab.com/grafolean/grafolean-collector',
@@ -9,4 +14,5 @@
14
description='Common utilities for creating (controlled) collectors for Grafolean',
15
packages=find_packages(exclude=['tests']),
11
16
long_description=open('README.md').read(),
17
+ install_requires=install_requires,
12
18
zip_safe=False)
0 commit comments