-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
82 lines (68 loc) · 2.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
"""The Tragedy of the Falling Sky's setup.py."""
try:
import pygame # have this setup beforehand
except ImportError:
raise SystemExit("unable to import pygame.")
import io
import re
from setuptools import setup
from setuptools import find_packages
from setuptools.command.test import test as TestCommand
def find_version(filename):
"""Uses re to pull out the assigned value to __version__ in filename."""
with io.open(filename, encoding="utf-8") as version_file:
version_match = re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]',
version_file.read(), re.M)
if version_match:
return version_match.group(1)
return "0.0.0"
class PyTest(TestCommand):
"""Shim in pytest to be able to use it with setup.py test."""
def finalize_options(self):
"""Stolen from http://pytest.org/latest/goodpractises.html."""
TestCommand.finalize_options(self)
self.test_args = ["-v", "-rf", "--cov-report", "term-missing", "--cov",
"fallingsky", "test"]
self.test_suite = True
def run_tests(self):
"""Also shamelessly stolen."""
# have to import here, outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
raise SystemExit(errno)
setup(
name="fallingsky",
version=find_version("fallingsky/__init__.py"),
author="Adam Talsma",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
install_requires=["kezmenu3", "appdirs"],
entry_points={"console_scripts": ["fallingsky = fallingsky.main:play"]},
url="http://a-tal.github.io/fallingsky",
description="A game of falling blocks with RPG elements, uses pygame.",
long_description=(
"The Tragedy of the Falling Sky intends to be a RPG style block game. "
"It is still in very early development though, so many features are "
"missing. Also the artwork is very preliminary and will be improved "
"upon. Feel free to contribute to the project on GitHub, all pull "
"requests are welcomed."
),
download_url="https://github.com/a-tal/fallingsky",
tests_require=["pytest", "pytest-cov"],
cmdclass={"test": PyTest},
license="GPLv2",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Software Development :: Libraries :: pygame",
],
)