forked from thomasyu888/synapse-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 930 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
"""Setup"""
import os
from setuptools import setup, find_packages
# figure out the version
# about = {}
# here = os.path.abspath(os.path.dirname(__file__))
# with open(os.path.join(here, "challengeutils", "__version__.py")) as f:
# exec(f.read(), about)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='synapsemonitor',
# version=about["__version__"],
version="0.0.1",
description='Synapse monitoring',
url='https://github.com/thomasyu888/synapse-monitor',
author='Thomas Yu',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache',
packages=find_packages(),
zip_safe=False,
python_requires='>=3.6, <3.9',
entry_points={'console_scripts': ['synapsemonitor = synapsemonitor.__main__:main']},
install_requires=['synapsegenie'])