-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (33 loc) · 1.01 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
"""EVE Swagger Interface - Endpoint."""
import os
from setuptools import setup, find_packages
from setuphelpers import long_description, git_version, test_command
setup(
name="esi-routes",
version=git_version(),
description="EVE Swagger Interface Endpoint - esi-routes",
long_description=long_description(),
cmdclass=test_command(),
packages=find_packages(),
author="",
author_email="",
url="",
install_requires=[
"esi",
"fibonacci-heap-mod",
],
extras_require={"generate": ["bravado"]},
package_dir={"esi_routes": "esi_routes"},
package_data={"esi_routes": ["jumpmap.json"]},
include_package_data=True,
zip_safe=False,
setup_requires=["setuphelpers >= 0.1.2"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Flask",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
],
)