Skip to content

Commit

Permalink
pypi/wheel updates to include header files
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed May 1, 2018
1 parent 167adb0 commit 7a8124a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,7 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.0.2] - 2018-04-30
## [1.0.3] - 2018-05-31
### Changed
- fixed padding issue with dates (padding with a zero)
- pypi support
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Expand Up @@ -3,5 +3,7 @@ include README.md
include COPYING
include ChangeLog
include AUTHORS
include src/dateblock.h
include src/Date.h
global-exclude *.pyc
global-exclude __pycache__
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -15,7 +15,7 @@
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
AC_PREREQ(2.59)
AC_INIT(datetools, 1.0.2, lead2gold@gmail.com)
AC_INIT(datetools, 1.0.3, lead2gold@gmail.com)

AC_CONFIG_HEADERS(src/config.h)

Expand Down
6 changes: 3 additions & 3 deletions datetools.spec
Expand Up @@ -20,7 +20,7 @@ Group: System Environment/Base
License: GPLv2+
Name: datetools
Release: 1%{?dist}.nuxref
Version: 1.0.2
Version: 1.0.3
Source: %{name}-%{version}.tar.gz
Packager: Chris Caron <lead2gold@gmail.com>
URL: http://nuxref.com
Expand Down Expand Up @@ -94,8 +94,8 @@ make clean
%attr(-,root,root) %{python_sitearch}/*

%changelog
* Mon Apr 30 2018 Chris Caron <lead2gold@gmail.com> 1.0.2-1
- Updated to version 1.0.2
* Mon May 1 2018 Chris Caron <lead2gold@gmail.com> 1.0.3-1
- Updated to version 1.0.3

* Fri Apr 21 2017 Chris Caron <lead2gold@gmail.com> 1.0.0-1
- Updated to version 1.0.0
Expand Down
15 changes: 9 additions & 6 deletions setup.py
Expand Up @@ -27,7 +27,7 @@

setup(
name = "dateblock",
version = "1.0.2",
version = "1.0.3",
url='https://github.com/caronc/datetools/',
long_description=open('README.md').read(),
description="Python Cron-like date mainpulation",
Expand All @@ -45,10 +45,13 @@
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
),
ext_modules = [
Extension("dateblock", ["src/Date.cpp", "src/dateblock.cpp"],
libraries=['stdc++'],
define_macros=[
('PYTHON_MODULE', '1'),
])],
Extension("dateblock", [
"src/Date.cpp",
"src/dateblock.cpp",
],
libraries=['stdc++'],
define_macros=[
('PYTHON_MODULE', '1'),
])],
keywords='date sleep block time manipulation cron',
)

0 comments on commit 7a8124a

Please sign in to comment.