-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (59 loc) · 1.98 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
57
58
59
60
61
62
from setuptools import setup, find_packages
from os.path import dirname, join
here = dirname(__file__)
_VERSION = "2.2.2"
setup(
name="ovs-cluster-agent",
version=_VERSION,
description="Cluster API data aggregator",
long_description=open(join(here, "README.md")).read(),
long_description_content_type="text/markdown",
license="MIT",
author="omnivector-solutions",
author_email="[email protected]",
url="https://github.com/omnivector-solutions/ovs-cluster-agent/",
download_url="https://github.com/omnivector-solutions/ovs-cluster-agent/dist/cluster-agent-"
+ _VERSION
+ "tar.gz",
install_requires=list(
map(lambda string: string.strip("\n"), open("requirements.txt", "r"))
),
extras_require=dict(
dev=[
"pytest==7.1.0",
"pytest-mock==3.7.0",
"respx==0.19.2",
"asynctest==0.13.0",
"pytest-asyncio==0.18.2",
"black==22.3.0",
"flake8==4.0.1",
"pytest-env==0.6.2",
"pytest-random-order==1.0.4",
"pytest-cov==3.0.0",
"freezegun==1.2.2",
]
),
packages=find_packages(),
keywords=["armada", "hpc"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Other Audience",
"Topic :: Software Development",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Utilities",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"agentconfig=cluster_agent.scripts.agentconfig:parameters",
"agentrun=cluster_agent.main:main",
]
},
)