-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.01 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="rating-agent",
version="0.1.1",
author="Canyan Team",
author_email="dev@canyan.io",
description="Canyan Rating Engine API",
long_description=readme,
long_description_content_type="text/markdown",
license=license,
url="https://canyan.io",
install_requires=[
"Click>=7.0",
"aiohttp>=3.6.2",
"aio-pika>=6.3.0",
"fastapi>=0.42.0",
"graphene>=2.1.8",
"python-dateutil",
"pytz",
"requests",
"uvicorn>=0.9.1",
],
packages=find_packages(exclude=("tests")),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points="""
[console_scripts]
rating-agent=rating_agent.main:main_with_env
""",
)