diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index bb3ec5f..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1 +0,0 @@ -include README.md diff --git a/filterpy/__init__.py b/filterpy/__init__.py new file mode 100644 index 0000000..4d384f5 --- /dev/null +++ b/filterpy/__init__.py @@ -0,0 +1,9 @@ +"""Copyright 2014 Roger R Labbe Jr. + +filterpy library. +http://github.com/rlabbe/filterpy + +This is licensed under an MIT license. See the readme.MD file +for more information. +""" + diff --git a/pypi-test-install.sh b/pypi-test-install.sh new file mode 100644 index 0000000..025b3f7 --- /dev/null +++ b/pypi-test-install.sh @@ -0,0 +1,4 @@ +python setup.py sdist --formats=gztar,zip +python setup.py register -r test +#python setup.py sdist upload -r test +twine upload dist/* -r test \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 224a779..11e9ec4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md \ No newline at end of file +description-file = README.rst \ No newline at end of file diff --git a/setup.py b/setup.py index c3fd71b..e2b86c5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file -with open(path.join(here, 'README.md'), encoding='utf-8') as f: +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( @@ -77,9 +77,9 @@ # If there are data files included in your packages that need to be # installed, specify them here. If using Python 2.6 or less, then these # have to be included in MANIFEST.in as well. - package_data={ - 'filterpy': ['README.md'], - }, + #package_data={ + # 'filterpy': ['README.rst'], + #}, # Although 'package_data' is the preferred approach, in some case you may # need to place data files outside of your packages.