-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
56 lines (48 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
import os
import sys
import pkg_resources
from setuptools import setup, find_packages
path = os.path.abspath('./src')
sys.path.append(path)
VERSION = '0.1.0'
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
install_requires = []
with open(os.path.abspath("requirements.txt"), "r") as f:
requirements_txt = f.readlines()
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]
setup(
name='monosi',
version=VERSION,
description='Monosi - Data observability & monitoring toolkit',
# long_description=readme,
author='Vocable Inc.',
author_email='support@monosi.dev',
url='https://github.com/monosidev/monosi',
license=license,
install_requires=install_requires,
packages=find_packages(
where="src",
include=[
"ingestion*",
"pipeline*"
"scheduler*",
"server*",
"telemetry*",
],
exclude=["tests"],
),
package_dir={"": "src"},
entry_points = {
'console_scripts': [
'monosi=cli.__main__:main',
],
},
)