Skip to content

Commit

Permalink
Restructured the lib files after pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
petrusen committed Jul 28, 2024
1 parent b4c14b9 commit 392a6ca
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
7 changes: 4 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ include CHANGELOG.rst
include requirements.txt

# If including data files in the package, add them like:
include inputs/W_Set_PBE_test/*out
include inputs/W_Set_PBE_molfiles/*mol
include utilities/np_IM_test.csv
include pomsimulator/inputs/W_Set_PBE_test/*out
include pomsimulator/inputs/W_Set_PBE_molfiles/*mol
include pomsimulator/utilities/np_IM_test.csv

16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


setup(name='pomsimulator',
version='1.0.1a10',
version='1.0.1a11',
author="Enric Petrus, Jordi Buils. Diego Garay-Ruiz",
author_email="enricpz@icloud.com, jbuils@iciq.es, dgaray@iciq.es",
description="Simulate the aqueous speciation of polyoxometalates (POMs) from quantum mechanical results",
Expand All @@ -26,9 +26,11 @@
"Operating System :: OS Independent"],
python_requires='>=3.8',
include_package_data=True,
package_data={ "inputs": [ # When adding files here, remember to update MANIFEST.in as well,
# or else they will not be included in the distribution on PyPI!
# 'path/to/data_file',
"W_Set_PBE_test/*out", "W_Set_PBE_molfiles/*mol"],
"utilities": ["np_IM_test.csv"]}
)
package_data={
"pomsimulator": ["inputs/W_Set_PBE_test/*out",
"inputs/W_Set_PBE_molfiles/*mol",
"utilities/np_IM_test.csv",
"outputs/",]})
# When adding files here, remember to update MANIFEST.in as well,
# or else they will not be included in the distribution on PyPI!
# 'path/to/data_file',

0 comments on commit 392a6ca

Please sign in to comment.