-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
35 lines (32 loc) · 1.09 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
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = [req.strip() for req in open('requirements.pip')]
setup(
name = 'leaderboard',
version = "3.7.3",
author = 'David Czarnecki',
author_email = "[email protected]",
packages = ['leaderboard'],
install_requires = requirements,
url = 'https://github.com/agoragames/leaderboard-python',
license = "LICENSE.txt",
description = 'Leaderboards backed by Redis in Python',
long_description = open('README.md').read(),
keywords = ['python', 'redis', 'leaderboard'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Communications",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
]
)