-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.07 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
import os
from setuptools import find_packages
from setuptools import setup
NAME = "hydra"
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, NAME, "__version__.py")) as f:
exec(f.read(), about)
setup(
name=NAME,
version=about[NAME],
description="Hydra agents management center",
author="Vladimir Bondarevskiy",
author_email="[email protected]",
url="https://github.com/vbondarevsky/hydra",
license="https://www.gnu.org/licenses/gpl-3.0",
packages=find_packages(exclude=["tests", "tests.*", "front"]),
python_requires=">=3",
install_requires=[
"aiohttp>=3.4.4",
"pyyaml",
"SQLAlchemy",
],
zip_safe=True,
entry_points={
"console_scripts": [
"hydra = hydra.main:run"
]
},
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
],
)