|
7 | 7 | long_description = ifp.read() |
8 | 8 |
|
9 | 9 | setup( |
10 | | - name="brood", |
| 10 | + name="bugout-brood", |
11 | 11 | version=BROOD_VERSION, |
12 | 12 | packages=find_packages(), |
13 | 13 | install_requires=[ |
14 | | - "fastapi", |
15 | | - "python-multipart", |
| 14 | + "argon2_cffi", |
| 15 | + "boto3>=1.20.2", |
| 16 | + "fastapi>=0.70.0", |
| 17 | + "passlib", |
16 | 18 | "psycopg2-binary", |
17 | | - "alembic", |
18 | | - "sqlalchemy", |
19 | | - "uvicorn", |
| 19 | + "pydantic", |
| 20 | + "python-multipart", |
20 | 21 | "sendgrid", |
21 | | - "passlib", |
22 | | - "argon2_cffi", |
23 | | - "stripe", |
| 22 | + "sqlalchemy>=1.4.26", |
| 23 | + "stripe>=2.61.0", |
| 24 | + "uvicorn>=0.15.0", |
24 | 25 | ], |
25 | | - extras_require={"dev": ["black", "mypy", "boto3"]}, |
| 26 | + extras_require={ |
| 27 | + "dev": ["alembic>=1.7.4", "black", "isort", "mypy"], |
| 28 | + "distribute": ["setuptools", "twine", "wheel"], |
| 29 | + }, |
26 | 30 | description="Brood: Bugout authentication", |
27 | 31 | long_description=long_description, |
28 | 32 | long_description_content_type="text/markdown", |
29 | | - author="Neeraj Kashyap", |
30 | | - author_email="neeraj@simiotics.com", |
| 33 | + author="Bugout.dev", |
| 34 | + author_email="engineering@bugout.dev", |
31 | 35 | classifiers=[ |
32 | | - "Development Status :: 2 - Pre-Alpha", |
| 36 | + "Development Status :: 3 - Alpha", |
| 37 | + "Intended Audience :: Developers", |
| 38 | + "Natural Language :: English", |
33 | 39 | "Programming Language :: Python", |
| 40 | + "License :: OSI Approved :: Apache Software License", |
| 41 | + "Topic :: Software Development :: Libraries", |
34 | 42 | ], |
35 | 43 | url="https://github.com/simiotics/brood", |
36 | 44 | entry_points={ |
|
0 commit comments