Skip to content

Commit

Permalink
v0.6.1 - Remove lxml & Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hexatester committed Jan 12, 2021
1 parent 9079b34 commit 053043f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dapodik/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python

__version__ = "0.6.0"
__version__ = "0.6.1"
__dapodik_version__ = "2021.b"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dapodik"
version = "0.6.0"
version = "0.6.1"
description = "SDK python untuk aplikasi dapodik."
authors = ["hexatester <habibrohman@protonmail.com>"]
license = "MIT"
Expand Down
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,25 @@

setup(
name="dapodik",
version="0.6.0",
version="0.6.1",
description="SDK python untuk aplikasi dapodik.",
author="Habib Rohman",
author_email="habibrohman@protonmail.com",
url="https://github.com/hexatester/dapodik",
url="https://github.com/dapodix/dapodik",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=["dapodik"],
install_requires=["python", "requests", "beautifulsoup4"],
install_requires=["python", "requests", "beautifulsoup4", "attrs"],
entry_points={"console_scripts": ["dapodik=dapodik.__main__:main"]},
)
2 changes: 1 addition & 1 deletion tests/test_dapodik.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


def test_version():
assert __version__ == "0.6.0"
assert __version__ == "0.6.1"
assert __dapodik_version__ == "2021.b"

0 comments on commit 053043f

Please sign in to comment.