-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.29 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.29 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
# setup.py
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="wildfire_ROS_models", # Replace with your desired package name
version="0.1.0",
author="Your Name",
author_email="filippi_j@univ-corse.fr",
description="A package for wildfire ROS model development, benchmarking and testing",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/forefireAPI/wildfire_ROS_models/", # Replace with your repo URL
packages=["wildfire_ROS_models"],
package_dir={"wildfire_ROS_models": "wildfire_ROS_models"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Choose your license
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"matplotlib>=3.5.0",
"numpy>=1.21.0",
"SALib>=1.5.3",
"scikit-learn>=1.0.2",
"tensorflow>=2.0.0", # Added TensorFlow
# Add other dependencies here
],
entry_points={
"console_scripts": [
"sensitivity_analysis=wildfire_ROS_models.scripts.sensitivity_analysis:main",
],
},
include_package_data=True,
)