-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 934 Bytes
/
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
from setuptools import setup, find_packages
requires = ['guillotina>=4.0.0,<5', "jinja2"]
setup(
name="guillotina_swagger",
version='1.0.15.dev0',
description="Swagger integration for viewing REST on your guillotina install",
long_description=(
open("README.rst").read() + "\n" + open("CHANGES.rst").read()
),
keywords=["guillotina", "REST", "swagger"],
author="Nathan Van Gheem",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
url="https://github.com/guillotinaweb/guillotina_swagger",
license="BSD",
install_requires=requires,
)