-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Include PYPI_README.rst in dist
- Loading branch information
Showing
3 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
@@ -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'], | ||
|
@@ -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", | ||
|