Skip to content

Commit

Permalink
Merge pull request #11 from movermeyer/simplify
Browse files Browse the repository at this point in the history
Moved C files back into the same directory. Easier that way.
  • Loading branch information
movermeyer authored Oct 5, 2018
2 parents c1b421c + 3a11640 commit c015c9b
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.in
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.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Empty file added tests/__init__.py
Empty file.
File renamed without changes.

0 comments on commit c015c9b

Please sign in to comment.