-
Notifications
You must be signed in to change notification settings - Fork 16
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
255deb5
commit 66259cd
Showing
13 changed files
with
65 additions
and
10 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
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
bug_url = "https://github.com/Marco-Sulla/python-frozendict/issues" | ||
author = "Marco Sulla" | ||
author_email = "[email protected]" | ||
license = "LGPL v3" | ||
mylicense = "LGPL v3" | ||
license_files = "LICENSE.txt" | ||
description = "A simple immutable dictionary" | ||
|
||
|
@@ -46,8 +46,6 @@ | |
readme_path = curr_dir / readme_filename | ||
readme_content_type = "text/markdown" | ||
|
||
long_description = "" | ||
|
||
with open(readme_path) as f: | ||
long_description = f.read() | ||
|
||
|
@@ -127,6 +125,7 @@ | |
undef_macros = ["NDEBUG"] | ||
|
||
|
||
# noinspection PyShadowingNames | ||
def get_ext_module( | ||
fullname, | ||
sources, | ||
|
@@ -147,6 +146,7 @@ def get_ext_module( | |
return ext_module | ||
|
||
|
||
# noinspection PyShadowingNames | ||
def get_ext_module_1(optional): | ||
return get_ext_module( | ||
fullname = ext1_fullname, | ||
|
@@ -160,13 +160,14 @@ def get_ext_module_1(optional): | |
# C extension - END | ||
|
||
|
||
# noinspection PyUnresolvedReferences | ||
common_setup_args = dict( | ||
name = name, | ||
author = author, | ||
author_email = author_email, | ||
version = version, | ||
python_requires = python_requires, | ||
license = license, | ||
license = mylicense, | ||
license_files = (license_files, ), | ||
url = main_url, | ||
|
||
|
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
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
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
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
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
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
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
Oops, something went wrong.