Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MANIFEST.in for source distribution #1

Merged
merged 3 commits into from
Mar 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
include LICENSE
include README.md
include lixtools/plate_label_template.html
include lixtools/template_report.ipynb

recursive-exclude * __pycache__
recursive-exclude * *.py[co]

# recursive-include docs *.rst conf.py Makefile make.bat
# include versioneer.py
# include lixtools/_version.py
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
version=lixtools.__version__,
author='Lin Yang',
author_email='[email protected]',
license="BSD",
url="",
license="BSD-3-Clause",
url="https://github.com/NSLS-II-LIX/lixtools",
packages=find_packages(),
package_data={'': ['plate_label_template.html', 'template_report.ipynb']},
include_package_data=True,
install_requires=['py4xs', 'numpy', 'pandas',
'python-barcode', 'matplotlib', 'pillow',
'openpyxl>=3', 'xlrd', "qrcode"],
'openpyxl>=3', 'qrcode'],
python_requires='>=3.6',
classifiers=[
"Intended Audience :: Science/Research",
Expand Down