-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
51 lines (48 loc) · 1.43 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
from setuptools import find_packages, setup
from brood.version import BROOD_VERSION
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="bugout-brood",
version=BROOD_VERSION,
packages=find_packages(),
install_requires=[
"argon2_cffi",
"boto3>=1.20.2",
"fastapi>=0.70.0",
"passlib",
"psycopg2-binary",
"pydantic==1.10.2",
"python-multipart",
"sendgrid",
"sqlalchemy>=1.4.26",
"stripe>=2.61.0",
"uvicorn>=0.15.0",
"web3login[fastapi]>=0.0.5",
],
extras_require={
"dev": ["alembic>=1.7.4", "black", "isort", "mypy"],
"distribute": ["setuptools", "twine", "wheel"],
},
description="Brood: Bugout authentication",
long_description=long_description,
long_description_content_type="text/markdown",
author="Bugout.dev",
author_email="engineering@bugout.dev",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
],
url="https://github.com/simiotics/brood",
entry_points={
"console_scripts": [
"brood=brood.cli:main",
"resources=brood.resources.cli:main",
]
},
)