-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 775 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import os
from setuptools import setup, find_packages
requirements_txt = os.path.dirname(os.path.realpath(__file__)) + '/requirements.txt'
with open(requirements_txt, "rt") as f:
install_requires = f.read().splitlines()[1:]
setup(name='grafoleancollector',
version='@@VERSION@@',
url='https://gitlab.com/grafolean/grafolean-collector',
license='Commons Clause + Apache 2.0',
author='Anže Škerlavaj',
author_email='info@grafolean.com',
description='Common utilities for creating (controlled) collectors for Grafolean',
packages=find_packages(exclude=['tests']),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=install_requires,
zip_safe=False)