-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (35 loc) · 1.22 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
#!/usr/bin/env python
import os.path
import fireplace
from setuptools import setup, find_packages
_basedir = os.path.dirname(__file__)
README = open(os.path.join(_basedir, "README.md")).read()
with open(os.path.join(_basedir, "requirements.txt")) as f:
requirements = f.read().splitlines()
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Games/Entertainment :: Simulation",
]
tests_require = ["pytest", "pytest-benchmark[aspect]"]
setup(
name="fireplace",
version=fireplace.__version__,
packages=find_packages(exclude="tests"),
install_requires=requirements,
tests_require=[tests_require],
extras_require={"tests": tests_require},
author=fireplace.__author__,
author_email=fireplace.__email__,
description="Pure-python Hearthstone re-implementation and simulator",
classifiers=CLASSIFIERS,
download_url="https://github.com/jleclanche/fireplace/tarball/master",
long_description=README,
license="AGPLv3",
url="https://github.com/jleclanche/fireplace",
zip_safe=True,
)