forked from boschglobal/luisy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 871 Bytes
/
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
from setuptools import (
setup,
find_packages,
)
from pathlib import Path
with open('requirements.txt') as f:
requirements_install = f.read().splitlines()
with open('VERSION') as f:
version = f.read().splitlines()[0]
setup(
name='luisy',
version=version,
description='Framework to build data pipelines',
author='Robert Bosch GmbH',
entry_points={
'console_scripts': [
'luisy = luisy.cli:luisy_run',
]
},
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=requirements_install,
tests_require=[],
license="Apache-2.0",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type='text/markdown',
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
project_urls={}
)