-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
56 lines (51 loc) · 1.42 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
55
56
# -*- encoding: utf-8 -*-
""" Setup for EsiPy """
import io
from setuptools import setup
import esipy
# install requirements
install_requirements = [
"requests",
"pyswagger >= 0.8.39",
"six",
"pytz",
"python-jose >= 3.0 , < 4"
]
# test requirements
test_requirements = [
"coverage",
"coveralls",
"httmock",
"nose",
"mock",
"future",
"python-memcached",
"redis",
"diskcache",
] + 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 :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
]
)