This repository was archived by the owner on Apr 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.52 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
import setuptools
with open("README.md", "r") as file:
long_description = file.read()
with open("requirements.txt") as file:
requirements = file.read()
setuptools.setup(
name="openhivenpy",
version="0.2.post1",
author="Luna Klatzer",
author_email="[email protected]",
description="The OpenSource Python API Wrapper and Bot-Framework for Hiven",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/Luna-Klatzer/openhiven.py",
project_urls={
"Docs": "https://luna-klatzer.github.io/openhiven.py/latest/",
"Hiven API Docs": "https://luna-klatzer.github.io/openhiven.py/latest/api_reference/hiven_restapi.html",
"Issue-Page": "https://github.com/Luna-Klatzer/openhiven.py/issues/",
"Changelog": "https://luna-klatzer.github.io/openhiven.py/latest/changelog.html"
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
include_package_data=True,
python_requires='>=3.7',
install_requires=requirements
)