forked from equinor/isar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (59 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
from setuptools import find_packages, setup
setup(
name="isar",
description="Integration and Supervisory control of Autonomous Robots",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Equinor ASA",
author_email="[email protected]",
url="https://github.com/equinor/isar",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
],
include_package_data=True,
install_requires=[
"alitra",
"azure-identity",
"azure-keyvault-secrets",
"azure-storage-blob",
"backoff",
"click",
"dacite",
"fastapi-azure-auth",
"fastapi",
"injector",
"numpy",
"paho-mqtt",
"pydantic",
"PyJWT",
"python-dotenv",
"PyYAML",
"requests-toolbelt",
"requests",
"transitions",
"uvicorn",
],
extras_require={
"dev": [
"black",
"flake8",
"mypy",
"myst-parser",
"pytest-dotenv",
"pytest-mock",
"pytest-xdist",
"pytest",
"requests-mock",
"sphinx",
]
},
python_requires=">=3.10",
)