Skip to content

Commit

Permalink
Fixes to MANIFEST.in for PyPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdouglass committed Jun 28, 2017
1 parent 94db128 commit dcdc697
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [v0.1.2]
### Fixed
- Fixed a typo in the MANIFEST.in file that caused the header files
not to be distributed on PyPI.

## [v0.1.1]
### Added
- Additional fields for PyPI support were added to the setup.py file.
Expand Down Expand Up @@ -32,6 +37,7 @@ All notable changes to this project will be documented in this file.
- Fixed off-by-one error in the wormlike chain generation code.
- Errors in computation of chain statistics

[v0.1.2]: https://github.com/kmdouglass/PolymerCpp/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/kmdouglass/PolymerCpp/compare/v0.1.0...v0.1.1
[v0.1.0]: https://github.com/kmdouglass/PolymerCpp/compare/v0.0.1...v0.1.0
[v0.0.1]: https://github.com/kmdouglass/PolymerCpp/compare/v0.0.0...v0.0.1
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
graft include/
graft include
2 changes: 1 addition & 1 deletion PolymerCpp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ with import <nixpkgs> {};

pkgs.python35Packages.buildPythonPackage rec {
name = "PolymerCpp-${version}";
version = "0.1.1";
version = "0.1.2";

src = ./.;

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '0.1.1'
version = '0.1.2'
# The full version, including alpha/beta/rc tags.
release = '0.1.1'
release = '0.1.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Switzerland, Laboratory of Experimental Biophysics, 2017
# See the LICENSE.txt file for more details.

from distutils.core import setup, Extension
from setuptools import setup, Extension
from os.path import join
from os import listdir

Expand All @@ -21,12 +21,12 @@
extra_compile_args = ['-std=c++11','-O2', '-fPIC'])

config={'name': 'PolymerCpp',
'version': '0.1.1',
'version': '0.1.2',
'description': '2D and 3D wormlike chain generator for Python and written in C++',
'author': 'Kyle M. Douglass, Marcel Stefko',
'author_email': '[email protected]',
'url': 'https://github.com/kmdouglass/PolymerCpp',
'download_url': 'https://github.com/kmdouglass/PolymerCpp/archive/v0.1.1.tar.gz',
'download_url': 'https://github.com/kmdouglass/PolymerCpp/archive/v0.1.2.tar.gz',
'keywords': ['polymer', 'wormlike chain', 'random walk'],
'classifiers': ['Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3',
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ with import <nixpkgs> {};

PolymerCpp = pkgs.python35Packages.buildPythonPackage rec {
name = "PolymerCpp-${version}";
version = "0.1.1";
version = "0.1.2";

src = ./.;

Expand Down

0 comments on commit dcdc697

Please sign in to comment.