-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.08 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.08 KB
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="py-easy-rest",
version="0.4.7",
author="Jean Pinzon",
author_email="jean.pinzon1@gmail.com",
description="The simplest way to have a rest api",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(
exclude=(
'tests',
),
),
install_requires=[
"jsonschema==4.4.0",
"sanic==22.3.1",
"sanic-ext==22.3.1",
],
extras_require={
'tests': [
"sanic-testing==22.3.0",
"pytest==7.1.2",
"pytest-asyncio==0.18.3",
"pytest-cov==3.0.0",
"flake8==4.0.1",
"aiounittest==1.4.1",
"twine==4.0.0",
"build==0.7.0",
],
},
python_requires='>=3.8',
)