-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
51 lines (45 loc) · 1.25 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
from setuptools import setup
from os import path
HERE = path.abspath(path.dirname(__file__))
def readme():
with open(path.join(HERE, "README.rst")) as f:
return f.read()
setup(
name="kickscore",
version="0.1.5",
author="Lucas Maystre",
author_email="[email protected]",
description="A dynamic skill rating system.",
long_description=readme(),
url="https://github.com/lucasmaystre/kickscore",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Games/Entertainment",
],
keywords="elo ranking skill score rating strength game comparison match",
packages=[
"kickscore",
"kickscore.fitter",
"kickscore.kernel",
"kickscore.observation",
],
install_requires=[
"numpy",
"scipy",
"numba"
],
setup_requires=[
"pytest-runner",
],
tests_require=[
"pytest",
],
include_package_data=True,
zip_safe=False,
)