Skip to content

Commit

Permalink
Add included packages in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jinningwang committed Nov 14, 2024
1 parent aa78b73 commit 1a082a5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'ams', 'AMS Manual',
author, 'ams', 'Python Software for Scheduling Modeling and Co-Simulation with Dynanic',
author, 'ams', 'Python Software for Scheduling Modeling and Co-Simulation with Dynanics',
'Miscellaneous'),
]

Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,12 @@

setup(
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass()
cmdclass=versioneer.get_cmdclass(),
package_data={
'ams': [
# 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 1a082a5

Please sign in to comment.