-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 999 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 999 Bytes
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
from setuptools import find_packages, setup
setup(
name="gas-analysis",
description="Analysis of thermal video files to identify gas.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Equinor ASA",
author_email="fg_robots_dev@equinor.com",
url="https://github.com/equinor/gas-analysis",
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=[
"opencv-python",
"numpy"
],
extras_require={
"dev": [
"black"
]
},
python_requires=">=3.10",
)