afmaths 2.0.0__tar.gz → 2.0.2__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.
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: afmaths
3
- Version: 2.0.0
3
+ Version: 2.0.2
4
4
  Summary: A simple package of math functions.
5
5
  Home-page: https://github.com/Arturius771/afmaths
6
6
  Author: Artur Foden
7
- Author-email:
8
7
  Classifier: Programming Language :: Python :: 3
9
- Requires-Python: >=3.12.4
8
+ Requires-Python: >=3.12
10
9
  Description-Content-Type: text/markdown
11
10
  License-File: LICENSE
12
11
  Dynamic: author
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: afmaths
3
- Version: 2.0.0
3
+ Version: 2.0.2
4
4
  Summary: A simple package of math functions.
5
5
  Home-page: https://github.com/Arturius771/afmaths
6
6
  Author: Artur Foden
7
- Author-email:
8
7
  Classifier: Programming Language :: Python :: 3
9
- Requires-Python: >=3.12.4
8
+ Requires-Python: >=3.12
10
9
  Description-Content-Type: text/markdown
11
10
  License-File: LICENSE
12
11
  Dynamic: author
@@ -1,11 +1,10 @@
1
- from setuptools import setup
1
+ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="afmaths",
5
- version="2.0.0",
6
- py_modules=["astronomy_types"], # without .py
5
+ version="2.0.2",
6
+ packages=find_packages(),
7
7
  author="Artur Foden",
8
- author_email="",
9
8
  description="A simple package of math functions.",
10
9
  long_description=open("README.md").read(),
11
10
  long_description_content_type="text/markdown",
@@ -13,5 +12,5 @@ setup(
13
12
  classifiers=[
14
13
  "Programming Language :: Python :: 3",
15
14
  ],
16
- python_requires=">=3.12.4",
15
+ python_requires=">=3.12",
17
16
  )
@@ -1 +0,0 @@
1
- astronomy_types
File without changes
File without changes