-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 838 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 838 Bytes
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
import os
from setuptools import setup, find_packages
# Read the version from _version.py
version = {}
with open(os.path.join("shepherd", "_version.py")) as f:
exec(f.read(), version)
setup(
name='shepherd',
version=version['__version__'], # Use the imported version
description='Shepherd - Service Orchestration and Monitoring Tool',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
install_requires=[
'pyyaml',
'jinja2',
'graphviz',
'matplotlib',
'pandas',
],
entry_points={
'console_scripts': [
'shepherd=shepherd.shepherd:main',
'shepherd_viz=shepherd.shepherd_viz:main',
],
},
python_requires='>=3.6',
)