forked from maximdanilchenko/aiohttp-apispec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.15 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
from setuptools import find_packages
from setuptools import setup
def read(file_name):
with open(file_name) as fp:
content = fp.read()
return content
setup(
name='aiohttp-apispec',
version='0.9.2',
description='Build and document REST APIs with aiohttp and apispec',
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='Danilchenko Maksim',
author_email='[email protected]',
packages=find_packages(exclude=('test*',)),
package_dir={'aiohttp_apispec': 'aiohttp_apispec'},
include_package_data=True,
install_requires=read('requirements.txt').split(),
license='MIT',
url='https://github.com/maximdanilchenko/aiohttp-apispec',
zip_safe=False,
keywords='aiohttp marshmallow apispec swagger',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
)