Skip to content

Commit 87faf03

Browse files
committed
back to setup.py
1 parent 60104cc commit 87faf03

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
File renamed without changes.

setup.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
author_email="[email protected]",
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+
)

0 commit comments

Comments
 (0)