-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
33 lines (32 loc) · 1.15 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
from setuptools import setup
setup(
name='skills',
version='0.3.0',
author='Scott Hamilton',
author_email='[email protected]',
packages=['skills',
'skills.trueskill',
'skills.testsuite',
'skills.testsuite.trueskill'
],
url='http://github.com/McLeopold/PythonSkills/',
license="BSD",
description='Implementation of the TrueSkill, Glicko'
' and Elo Ranking Algorithms',
long_description=open('README.rst').read(),
keywords='skill trueskill glicko elo',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Games/Entertainment',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)