-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
075447f
commit ca0ea77
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
from keyedarchivelib.api import dump, dumps, load, loads # noqa: F401 | ||
|
||
VERSION = "1.0.2" | ||
from keyedarchivelib.version import VERSION # noqa: F401 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
VERSION = "1.0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
from setuptools import setup, find_packages # type: ignore | ||
|
||
import keyedarchivelib | ||
|
||
with open("README.md", "r") as readme_file: | ||
long_description: str = readme_file.read() | ||
|
||
with open("keyedarchivelib/version.py", "r") as version_file: | ||
exec(version_file.read()) | ||
|
||
setup( | ||
name="keyedarchivelib", | ||
package_data={"keyedarchivelib": ["py.typed"]}, | ||
packages=find_packages(exclude=["test", "test.*"]), | ||
version=keyedarchivelib.VERSION, | ||
version=VERSION, | ||
python_requires=">=3.8", | ||
description="Generate and parse NSKeyedArchive files", | ||
long_description=long_description, | ||
|
@@ -20,7 +21,7 @@ | |
author_email="[email protected]", | ||
url="https://github.com/bigfootjon/keyedarchivelib", | ||
download_url="https://github.com/bigfootjon/keyedarchivelib/tarball/" | ||
+ keyedarchivelib.VERSION, | ||
+ VERSION, | ||
keywords=[], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|