forked from serverstf/python-valve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (43 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
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
import sys
import textwrap
import setuptools
install_requires = [
"docopt>=0.6.2",
"monotonic",
"requests>=2.0",
"six>=1.6",
]
if sys.version_info[0] == 2:
install_requires.append("enum34>=1.1")
setuptools.setup(
name="python-valve",
version="1.0.0",
description=("Small library implementing "
"various parts of Steam's public interfaces"),
author="Oliver Ainsworth",
author_email="[email protected]",
packages=setuptools.find_packages(),
install_requires=install_requires,
extras_require={
"development": [
"pylint",
],
"test": [
"mock==1.0.1",
"pytest>=2.8.0",
"pytest-capturelog",
"pytest-timeout",
],
},
license="MIT License",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)