Skip to content

Commit

Permalink
initial release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lthurner committed Mar 29, 2022
1 parent 5e5ae22 commit 39d4033
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 33 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Change Log

## [0.1.0]- 2021-03-29

- Initial release

4 changes: 0 additions & 4 deletions CHANGELOG.rst

This file was deleted.

2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ include CONTRIBUTING.rst
include HISTORY.rst
include LICENSE
include README.rst
include CHANGELOG.rst
include requirements.txt

recursive-include tests *
recursive-exclude * __pycache__
Expand Down
25 changes: 0 additions & 25 deletions README.rst

This file was deleted.

9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from setuptools import setup, find_packages

with open('README.rst') as readme_file:
with open('README.md') as readme_file:
readme = readme_file.read()

with open('CHANGELOG.rst', 'rb') as f:
with open('CHANGELOG.md', 'rb') as f:
changelog = f.read().decode('utf-8')

with open('requirements.txt') as req_file:
requirements = req_file.read()

long_description = '\n\n'.join((readme, changelog))
long_description = '\n\n'.join((changelog, readme))

test_requirements = ['pytest>=3', ]

Expand All @@ -35,7 +35,8 @@
name='pandahub',
packages=find_packages(),
url='https://github.com/e2nIEE/pandahub',
version='0.1',
version='0.1.0',
include_package_data=True,
long_description_content_type='text/markdown',
zip_safe=False,
)

0 comments on commit 39d4033

Please sign in to comment.