Skip to content

Commit

Permalink
[FIX] Include PYPI_README.rst in dist
Browse files Browse the repository at this point in the history
  • Loading branch information
singjc committed Feb 23, 2023
1 parent ae17737 commit 35c2a4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/diapysef/MANIFEST.rst

This file was deleted.

Empty file modified src/diapysef/PYPI_README.rst
100644 → 100755
Empty file.
10 changes: 6 additions & 4 deletions src/diapysef/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

def readme():
with open('PYPI_README.rst') as f:
Expand All @@ -8,12 +8,12 @@ def readme():
Analysis, conversion and visualization of diaPASEF data."""

setup(name='diapysef',
version='1.0.04',
version='1.0.05',
description=desc,
long_description=readme(),
long_description_content_type='text/x-rst',
url="https://github.com/Roestlab/dia-pasef",
author='Max Frank, Annie Ha, Hannes Roest',
author='Max Frank, Annie Ha, Justin Sing, Josh Charkow, Hannes Roest',
author_email='[email protected]',
license='MIT',
packages=['diapysef'],
Expand All @@ -28,8 +28,10 @@ def readme():
'joblib',
'click'],
package_data={
'diapysef': ['data/*']
'diapysef': ['data/*'],
'': ['PYPI_README.rst']
},
include_package_data=True,
entry_points={
'console_scripts': [
"diapysef=diapysef.main:cli",
Expand Down

0 comments on commit 35c2a4f

Please sign in to comment.