-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (32 loc) · 971 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os
from setuptools import setup, find_packages
def open_file(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name))
setup(
name="error-utils",
version="0.0.1",
url="",
author="Aleksey Reznikov",
author_email="[email protected]",
description="Error-utils: library containing common errors and their handlers for web frameworks",
long_description=open_file("README.md").read(),
packages=find_packages(exclude=["tests"]),
zip_safe=False,
platforms="any",
install_requires=[],
extras_require={
"fastapi": ["fastapi>=0.52.0", "inflection>=0.3.1"],
"aiohttp": ["aiohttp>=3.0.0", "inflection>=0.3.1"],
"tornado": ["tornado>=5.1.1"],
},
tests_require=[
"asynctest",
"pytest",
"pytest-asyncio",
"pytest-aiohttp",
"pytest-tornasync",
"marshmallow",
"requests",
],
python_requires=">=3.6"
)