-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from movermeyer/simplify
Moved C files back into the same directory. Easier that way.
- Loading branch information
Showing
9 changed files
with
10 additions
and
7 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,4 +1,4 @@ | ||
include LICENSE | ||
include README.rst | ||
include backports/_datetime_fromisoformat/timezone.h | ||
include backports/_datetime_fromisoformat/_datetimemodule.h | ||
include backports/datetime_fromisoformat/timezone.h | ||
include backports/datetime_fromisoformat/_datetimemodule.h |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,12 +16,15 @@ | |
author="Michael Overmeyer", | ||
author_email="[email protected]", | ||
url="https://github.com/movermeyer/backports.datetime_fromisoformat", | ||
ext_package="backports", | ||
ext_modules=[Extension("_datetime_fromisoformat", [ | ||
os.path.join("backports", "_datetime_fromisoformat", "module.c"), | ||
os.path.join("backports", "_datetime_fromisoformat", "_datetimemodule.c"), | ||
os.path.join("backports", "_datetime_fromisoformat", "timezone.c") | ||
|
||
packages=["backports", "backports.datetime_fromisoformat"], | ||
|
||
ext_modules=[Extension("backports._datetime_fromisoformat", [ | ||
os.path.join("backports", "datetime_fromisoformat", "module.c"), | ||
os.path.join("backports", "datetime_fromisoformat", "_datetimemodule.c"), | ||
os.path.join("backports", "datetime_fromisoformat", "timezone.c") | ||
])], | ||
|
||
test_suite='tests', | ||
tests_require=[ | ||
'pytz' | ||
|
Empty file.
File renamed without changes.