File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ from setuptools import setup , find_packages
2+
3+ setup (
4+ name = "weather2alert" ,
5+ version = "0.1.0" ,
6+ description = "A gym environment for optimizing heat alert issuance during heatwaves" ,
7+ long_description = open ("README.md" ).read (),
8+ long_description_content_type = "text/markdown" ,
9+ author = "Anonymous" ,
10+ 11+ license = "MIT" ,
12+ classifiers = [
13+ "Development Status :: 3 - Alpha" ,
14+ "Intended Audience :: Developers" ,
15+ "License :: OSI Approved :: MIT License" ,
16+ "Programming Language :: Python :: 3.10" ,
17+ "Programming Language :: Python :: 3.11" ,
18+ ],
19+ python_requires = ">=3.10" ,
20+ install_requires = [
21+ "scipy" ,
22+ "tqdm" ,
23+ "pyarrow" ,
24+ "pandas" ,
25+ "torch" ,
26+ "gymnasium" ,
27+ ],
28+ package_dir = {"" : "src" },
29+ packages = find_packages ("src" ),
30+ include_package_data = True , # Include data files from MANIFEST.in
31+ package_data = {
32+ "weather2alert" : [
33+ "weights/**/*" ,
34+ "data/**/*" ,
35+ ],
36+ },
37+ )
You can’t perform that action at this time.
0 commit comments