-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (57 loc) · 1.33 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
"""Package setup."""
from setuptools import (
find_packages,
setup,
)
install_requires = [
'alembic==1.6.5',
'async_exit_stack==1.0.1',
'async_generator==1.10',
'asyncpg==0.24.0',
'dependency-injector==4.35.2',
'fastapi==0.68.0',
'gunicorn==20.1.0',
'psycopg2==2.9.1',
'sqlalchemy==1.4.22',
'typer==0.3.2',
'uvicorn[standard]==0.13.4',
'uvloop==0.16.0',
]
test_requires = [
'flake8==3.9.2',
'httpx==0.18.2',
'mypy==0.910',
'pytest-asyncio==0.15.1',
'pytest-cov==2.12.1',
'pytest-sugar==0.9.4',
'pytest-xdist==2.3.0',
'pytest==6.2.4',
'requests==2.26.0',
'sqlalchemy[mypy]==1.4.22',
'syrupy==1.4.2',
]
dev_requires = [
'jupyter==1.0.0',
'pydevd-pycharm~=211.7142.13',
]
setup(
name='tom-calculator',
version='0.1.2',
url='https://github.com/andribas404/tom-calculator',
description='Tom calculator.',
author='Andrey Petukhov',
author_email='[email protected]',
packages=find_packages(include=['tom_calculator']),
python_requires='>=3.9',
install_requires=install_requires,
extras_require={
'test': test_requires,
'dev': dev_requires,
},
entry_points={
'console_scripts': [
'tom-calculator = tom_calculator.cli:app',
],
},
)