-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·54 lines (48 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
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
from setuptools import setup
import re
# Work around mbcs bug in distutils.
# http://bugs.python.org/issue10945
import codecs
try:
codecs.lookup("mbcs")
except LookupError:
ascii = codecs.lookup("ascii")
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == "mbcs"))
VERSION = "0.5.0"
# Strip some stuff from README for PyPI description:
long_desc = open("README.md").read()
long_desc = re.sub(
'<!-- EXCLUDE_FROM_PYPI -->?(.*?)<!-- END_EXCLUDE_FROM_PYPI -->',
'',
long_desc,
flags=re.DOTALL
)
setup(
name="peerplays",
version=VERSION,
description="Python library for PEERPLAYS",
long_description=long_desc,
long_description_content_type='text/markdown',
author="PBSA and contributors. Original by Fabian Schuh.",
author_email="[email protected]",
maintainer="PBSA",
maintainer_email="[email protected]",
url="https://gitlab.com/PBSA/tools-libs/python-peerplays",
keywords=["peerplays", "library", "api", "rpc"],
packages=["peerplays", "peerplays.cli", "peerplaysapi", "peerplaysbase"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Games/Entertainment",
],
entry_points={"console_scripts": ["peerplays = peerplays.cli.cli:main"]},
install_requires=open("requirements.txt").readlines(),
setup_requires=["pytest-runner"],
tests_require=["pytest"],
include_package_data=True,
)