forked from ZEDGR/pychallonge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 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
from setuptools import setup, find_packages
from os import path
cwd = path.abspath(path.dirname(__file__))
with open(path.join(cwd, "README.md")) as f:
readme = f.read()
setup(
name="pychallonge",
description="Α python module to use the Challonge API",
long_description=readme,
long_description_content_type="text/markdown",
author="ZEDGR",
author_email="[email protected]",
url="https://github.com/ZEDGR/pychallonge",
license="Public Domain",
version="1.11.1",
keywords=["tournaments", "challonge"],
packages=find_packages(),
platforms=["any"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
install_requires=[
"iso8601==0.1.12",
"tzlocal>=2.0.0,<3.0",
"pytz==2019.3",
"requests>=2.25.1,<3.0",
],
)