forked from ColinShark/exaroton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.64 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
import re
import setuptools
import pathlib as pl
with open(str(pl.Path(__file__).parent) + "/README.md", encoding="utf8") as f:
long_description = f.read()
with open(str(pl.Path(__file__).parent) + "/requirements.txt", encoding="utf8") as f:
dependencies = f.read()
with open(str(pl.Path(__file__).parent) + "/exaroton_expanded/__init__.py", encoding="utf-8") as f:
version = re.findall(r"__version__ = \"(.+)\"", f.read())[0]
setuptools.setup(
name="Exaroton Expanded",
version=version,
description="An effort to continue and add to the exaroton library for Minecraft server hosting",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/GalacticalEdge/exaroton-expanded",
author="GalacticalEdge",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Games/Entertainment",
],
keywords="exaroton minecraft api wrapper",
project_urls={"Issue Tracker": "https://github.com/GalacticalEdge/exaroton-expanded"},
# package_dir={"": "exaroton-expanded"},
packages=setuptools.find_packages(),
python_requires=">=3.6",
install_requires=dependencies,
)