Skip to content

Commit 6066d25

Browse files
authored
Merge pull request #23 from DrGFreeman/version-0.1.0
Version 0.1.0
2 parents 69ff867 + 5a6de9e commit 6066d25

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# dynamo-pandas
22
Make working with pandas data and AWS DynamoDB easy.
3+
4+
In development.

dynamo_pandas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
from .dynamo_pandas import to_item
33
from .dynamo_pandas import to_items
44

5-
__version__ = "0.1.0.dev"
5+
__version__ = "0.1.0"
66

77
__all__ = ["to_df", "to_item", "to_items", "__version__"]

requirements-dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ pre-commit
1010
pytest
1111
pytest-cov
1212
pytest-randomly
13+
twine
14+
wheel

setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,17 @@ def find_meta(meta):
3434
license="MIT",
3535
url="https://github.com/DrGFreeman/dynamo-pandas",
3636
description="Make working with pandas dataframe and AWS DynamoDB easy.",
37+
long_description=read("README.md"),
38+
long_description_content_type="text/markdown",
3739
packages=find_packages(),
3840
python_requires=">=3.7",
3941
install_requires=["boto3", "pandas>=1"],
42+
classifiers=[
43+
"Development Status :: 3 - Alpha",
44+
"License :: OSI Approved :: MIT License",
45+
"Programming Language :: Python :: 3",
46+
"Programming Language :: Python :: 3.7",
47+
"Programming Language :: Python :: 3.8",
48+
"Programming Language :: Python :: 3.9",
49+
],
4050
)

0 commit comments

Comments
 (0)