Skip to content

Commit da20380

Browse files
committed
Changes:
- Fix annotated-types dependency - Update setup.py to adjust package upload name
1 parent 7ea153d commit da20380

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,4 @@ cython_debug/
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161161
package-venv
162+
/.pypirc

minio_extensions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"TagMetadata"
1616
]
1717

18-
__version__ = "1.0.0"
18+
__version__ = "0.1.1"

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
readme = file.read()
1919

2020
setup(
21-
name="minio-extensions",
21+
name="minio_extensions",
2222
description="MinIO Python Extension Package for S3 Storage Operations",
2323
author="Christian Celso Bewzenko",
2424
url="https://github.com/chrisbewz/minio-extensions",
@@ -28,16 +28,16 @@
2828
long_description_content_type="text/markdown",
2929
package_dir={"minio_extensions": "./minio_extensions"},
3030
packages=[
31-
"minio_extensions",
32-
"minio_extensions.metadata"
31+
"minio_extensions"
3332
],
3433
install_requires=[
3534
"minio",
3635
"urllib3",
3736
"pydantic",
3837
"typing",
3938
"typing-extensions",
40-
"python-dotenv"
39+
"python-dotenv",
40+
"annotated-types"
4141
],
4242
tests_require=[],
4343
license="Apache-2.0",
@@ -54,7 +54,8 @@
5454
"Programming Language :: Python :: 3.11",
5555
"Topic :: Software Development :: Libraries :: Python Modules",
5656
],
57+
keywords = ['minio', 'minio-extensions'],
5758
long_description=readme,
5859
package_data={"": ["LICENSE", "README.md"]},
59-
include_package_data=True,
60+
include_package_data=True
6061
)

0 commit comments

Comments
 (0)