-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 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
44
45
#!/usr/bin/env python
import setuptools
from emlpd.gameapi import VER_STRING
with open("README-en.md", "r", encoding="utf-8") as fh :
long_description = fh.read()
setuptools.setup(
name="emlpd",
version=VER_STRING+".post2",
author="REGE",
author_email="[email protected]",
description="Python Minigame API & Implementation: Evil's Mutual Linear "
"Probability Detection ",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/cheny0y0/emlpd",
packages=setuptools.find_packages(exclude="test"),
python_requires=">=3.6",
classifiers=(
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: Chinese (Simplified)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Turn Based Strategy"
)
)