forked from equinor/isar-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (41 loc) · 1.31 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
from setuptools import find_packages, setup
setup(
name="isar_robot",
description="Integration and Supervisory control of Autonomous Robots - Open source robot implementation",
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-robot",
license="EPL-2.0",
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",
],
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"isar_robot": [
"example_images/for-science-you-monster.jpg",
"example_images/wheatley-remain-calm.jpg",
"config/settings.env",
]
},
include_package_data=True,
install_requires=["alitra", "isar"],
extras_require={
"dev": [
"black",
"mypy",
"pytest",
"pre-commit",
]
},
python_requires=">=3.10",
tests_require=["pytest"],
)