forked from glandfried/TrueSkillThroughTime.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 993 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 993 Bytes
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="trueskillthroughtime",
version="1.1.0",
author="Gustavo Landfried",
author_email="gustavolandfried@gmail.com",
description="The temporal learning estimator: Individual learning curves with reliable initial estimates and guaranteed comparability between distant estimates.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/glandfried/TrueSkillThroughTime.py/",
classifiers=[
'Development Status :: 4 - Beta',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=['trueskillthroughtime'],
#python_requires=">=3.6",
download_url = 'https://github.com/glandfried/TrueSkillThroughTime.py/archive/refs/tags/v1.1.0.tar.gz',
install_requires=[]
)