-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
37 lines (33 loc) · 1.19 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, setup
def read(file_name):
with open(file_name, encoding="utf-8") as fp:
content = fp.read()
return content
setup(
name='aiohttp-apispec',
version='3.0.0b2',
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',
python_requires='>=3.6',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite='tests',
)