-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·51 lines (47 loc) · 1.44 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
import io
import re
from setuptools import find_packages
from setuptools import setup
with io.open("README.md", "rt", encoding="utf8") as f:
readme = f.read()
with io.open("src/anilius/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
setup(
name="Anilius",
version=version,
description="GRPC framework for microservice ecosystem",
long_description=readme,
author="Mahdi Zarrintareh",
author_email="[email protected]",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"alembic>=1.3.2",
"black>=18.9b0",
"click>=7.0",
"coverage>=5.*",
"flake8>=3.7.*",
"mysqlclient>=1.4.6",
"passlib>=1.7.2",
"phonenumbers>=8.11.1",
"pytest>=5.3.4",
"pytest-cov>=2.8.1",
"pytest-xdist>=1.31.0",
"PyJWT>=1.7.1",
"py-grpc-prometheus>=0.2.0",
"sentry-sdk>=0.14.1",
"SQLAlchemy>=1.3.12",
"SQLAlchemy-Utils>=0.36.1",
"zimports>=0.2.0",
"redis>=3.4.1",
"grpcio>=1.26.*",
"grpcio-tools>=1.26.*"
"msgpack>=0.6.2",
"lz4>=3.0.2",
"loguru>=0.4.1"
],
extras_require={"dotenv": ["python-dotenv"], "dev": ["pytest", "coverage", "tox"]},
entry_points={"console_scripts": ["anilius = anilius.cli.main:main"]},
)