-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (51 loc) · 1.42 KB
/
setup.py
File metadata and controls
54 lines (51 loc) · 1.42 KB
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
from setuptools import find_packages, setup
from drones.version import DRONES_VERSION
long_description = ""
with open("README.md") as ifp:
long_description = ifp.read()
setup(
name="bugout-drones",
version=DRONES_VERSION,
author="Bugout.dev",
author_email="engineering@bugout.dev",
description="Drones and automatization",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bugout-dev/drones",
platforms="all",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.8",
packages=find_packages(),
package_data={"bugout": ["py.typed"]},
zip_safe=False,
install_requires=[
"boto3",
"fastapi",
"redis",
"pydantic",
"sendgrid",
"bugout-spire>=0.4.2",
"sqlalchemy",
"tqdm",
],
extras_require={
"dev": [
"black",
"mypy",
],
"distribute": ["setuptools", "twine", "wheel"],
},
entry_points={
"console_scripts": [
"drones=drones.cli:main",
"great-wyrm-votes=drones.great_wyrm.votes:main",
]
},
)