-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
50 lines (41 loc) · 1.14 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
50
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
version = '0.5.2'
setup(
name = 'screepsapi',
version = version,
packages=find_packages(),
description = 'Unofficial client for the Screeps Unofficial API',
long_description=long_description,
python_requires='>=2',
author = 'Robert Hafner, dzhu',
author_email = '[email protected]',
url = 'https://github.com/screepers/python-screeps',
download_url = "https://github.com/screepers/python-screeps/archive/v%s.tar.gz" % (version),
keywords = 'screeps api',
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
],
install_requires=[
'nose',
'requires',
'requests>=2.10.0,<3',
'websocket-client'
],
extras_require={
'dev': [
'pypandoc',
'twine',
'wheel'
],
},
)