Skip to content

Commit

Permalink
Merge pull request #1 from NSLS-II-LIX/add-manifest
Browse files Browse the repository at this point in the history
Add MANIFEST.in for source distribution
  • Loading branch information
mrakitin authored Mar 16, 2021
2 parents a202659 + df11dfb commit 22bd341
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
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

0 comments on commit 22bd341

Please sign in to comment.