-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
54 lines (49 loc) · 1.39 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
51
52
53
54
import esipy
import io
from setuptools import setup
# install requirements
install_requirements = [
"requests",
"pyswagger >= 0.8.31",
"six",
"pytz",
"futures",
]
# test requirements
test_requirements = [
"coverage",
"coveralls",
"httmock",
"nose",
"mock",
"future",
"python-memcached",
"redis",
] + install_requirements
with io.open('README.rst', encoding='UTF-8') as reader:
readme = reader.read()
setup(
name='EsiPy',
version=esipy.__version__,
packages=['esipy'],
url='https://github.com/Kyria/EsiPy',
license='BSD 3-Clause License',
author='Kyria',
author_email='[email protected]',
description='Swagger Client for the ESI API for EVE Online',
long_description=readme,
install_requires=install_requirements,
tests_require=test_requirements,
test_suite='nose.collector',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
]
)