-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (42 loc) · 1.23 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
from setuptools import setup, find_packages
from pathlib import Path
with open("README.md") as file:
long_description = file.read()
REQUIREMENTS = [
"requests",
"ruamel.yaml",
"paramiko",
"pycryptodome",
"python-novaclient",
"openstacksdk",
"ansible",
"ansible-runner",
"click",
"dicttoxml",
]
setup(
name="micado-client",
version="0.12.11",
description="A Python Client Library for MiCADO",
long_description=long_description,
long_description_content_type="text/markdown",
author="Márk Emődi & Jay DesLauriers",
python_requires=">=3.9",
url="https://github.com/micado-scale/micado-client",
packages=find_packages(exclude=["tests"]),
project_urls={
"Bug Tracker": "https://github.com/micado-scale/micado-client/issues",
},
install_requires=REQUIREMENTS,
license="Apache 2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
],
entry_points={
"console_scripts": ["micado=micado.cli:cli"],
},
)