geoconformal 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Peng Luo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ (标准MIT License内容)
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: geoconformal
3
+ Version: 0.1.0
4
+ Summary: Geographically Weighted Conformal Prediction Methods
5
+ Home-page: https://github.com/pengluo/geoconformal
6
+ Author: Peng Luo
7
+ Author-email: pengluo@mit.edu
8
+ License: MIT
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.7
13
+ License-File: LICENSE
14
+ Requires-Dist: numpy
15
+ Requires-Dist: scikit-learn
16
+ Requires-Dist: scipy
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: home-page
21
+ Dynamic: license
22
+ Dynamic: license-file
23
+ Dynamic: requires-dist
24
+ Dynamic: requires-python
25
+ Dynamic: summary
@@ -0,0 +1,18 @@
1
+ # geoconformal
2
+
3
+ Geographically Weighted Conformal Prediction Methods.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install geoconformal
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from geoconformal import GeoConformalSpatialRegression
15
+ ```
16
+
17
+ ## License
18
+ MIT License
@@ -0,0 +1 @@
1
+ # (Your GeoConformalSpatialRegression.py content here)
@@ -0,0 +1 @@
1
+ # geoconformal package
@@ -0,0 +1 @@
1
+ # (Your utils.py content here)
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: geoconformal
3
+ Version: 0.1.0
4
+ Summary: Geographically Weighted Conformal Prediction Methods
5
+ Home-page: https://github.com/pengluo/geoconformal
6
+ Author: Peng Luo
7
+ Author-email: pengluo@mit.edu
8
+ License: MIT
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.7
13
+ License-File: LICENSE
14
+ Requires-Dist: numpy
15
+ Requires-Dist: scikit-learn
16
+ Requires-Dist: scipy
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: home-page
21
+ Dynamic: license
22
+ Dynamic: license-file
23
+ Dynamic: requires-dist
24
+ Dynamic: requires-python
25
+ Dynamic: summary
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ geoconformal/GeoConformalSpatialRegression.py
5
+ geoconformal/__init__.py
6
+ geoconformal/utils.py
7
+ geoconformal.egg-info/PKG-INFO
8
+ geoconformal.egg-info/SOURCES.txt
9
+ geoconformal.egg-info/dependency_links.txt
10
+ geoconformal.egg-info/requires.txt
11
+ geoconformal.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ numpy
2
+ scikit-learn
3
+ scipy
@@ -0,0 +1 @@
1
+ geoconformal
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,23 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='geoconformal',
5
+ version='0.1.0',
6
+ description='Geographically Weighted Conformal Prediction Methods',
7
+ author='Peng Luo',
8
+ author_email='pengluo@mit.edu',
9
+ url='https://github.com/pengluo/geoconformal',
10
+ license='MIT',
11
+ packages=find_packages(),
12
+ install_requires=[
13
+ 'numpy',
14
+ 'scikit-learn',
15
+ 'scipy'
16
+ ],
17
+ classifiers=[
18
+ 'Programming Language :: Python :: 3',
19
+ 'License :: OSI Approved :: MIT License',
20
+ 'Operating System :: OS Independent',
21
+ ],
22
+ python_requires='>=3.7',
23
+ )