forked from pascalhubacher/HitachiBlockAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 807 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 807 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
import setuptools
# Read infos from README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# mandatory depencies
deps = []
# optional depencies for "maintainer"
optional_deps = {
"full": ['wheel', 'setuptools', 'pytest', 'pytest-html', 'keyring', 'twine'],
"minimal": []
}
setuptools.setup(
name='HitachiBlockAPI',
packages=['HitachiBlockAPI'],
version='0.9.3',
author="Pascal Hubacher",
description='Python Class for Hitachi Storage REST API to ease the communication to Hitachi Storage',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/pascalhubacher/HitachiBlockAPI',
install_requires=deps,
extras_require=optional_deps,
scripts=[]
)