-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (37 loc) · 1.32 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
from screeps._version import __version__
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='screeps',
version=__version__,
author='Tobias Wilken',
author_email='[email protected]',
maintainer='Tobias Wilken',
maintainer_email='[email protected]',
url='https://github.com/TooAngel/python-screeps',
description='Library connecting to the screeps api.',
long_description=long_description,
download_url='https://pypi.python.org/pypi/screeps',
license='AGPL-3.0',
platforms=['Any'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', # noqa
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Utilities'
],
packages=find_packages(),
install_requires=['requests>=2.8.1', 'websocket-client>=0.32.0'],
)