-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
now returns true for negative numbers and false for negative zero
- Loading branch information
Ariel Ferdman
committed
Jan 18, 2018
1 parent
4477bff
commit 62a8748
Showing
2 changed files
with
39 additions
and
22 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,16 +1,16 @@ | ||
#!/usr/bin/env python3 | ||
# encoding: utf-8 | ||
from distutils.core import setup, Extension | ||
|
||
strextnd_module = Extension('strextnd', sources = ['strextnd.c']) | ||
|
||
setup(name='strextnd', | ||
version='0.1', | ||
description='A Module written in C that extends the python3 str library', | ||
author = 'Ariel Ferdman', | ||
author_email = 'arielxcon@gmail.com', | ||
ext_modules=[strextnd_module], | ||
url = 'https://github.com/arielferdman/strextnd', | ||
download_url = 'https://github.com/arielferdman/strextnd/archive/0.1.tar.gz', | ||
keywords = ['string', 'is_numeric', 'float'], | ||
classifiers = [],) | ||
#!/usr/bin/env python3 | ||
# encoding: utf-8 | ||
from distutils.core import setup, Extension | ||
|
||
strextnd_module = Extension('strextnd', sources = ['strextnd.c']) | ||
|
||
setup(name='strextnd', | ||
version='0.2', | ||
description='A Module written in C that extends the python3 str library', | ||
author = 'Ariel Ferdman', | ||
author_email = 'arielxcon@gmail.com', | ||
ext_modules=[strextnd_module], | ||
url = 'https://github.com/arielferdman/strextnd', | ||
download_url = 'https://github.com/arielferdman/strextnd/archive/0.1.tar.gz', | ||
keywords = ['string', 'is_numeric', 'float'], | ||
classifiers = [],) |
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