-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modify readme + setup.py to render on pypi
- Loading branch information
1 parent
c1775c3
commit 0e203f7
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -7,11 +7,17 @@ | |
with open(version_file, "r") as fr: | ||
version = fr.read().strip() | ||
|
||
readme_file = os.path.join(os.path.dirname(__file__), "README.md") | ||
with open(readme_file, "r") as fr: | ||
long_description = fr.read().strip() | ||
|
||
|
||
setup( | ||
name="autocat", | ||
version=version, | ||
description="Tools for automated generation of catalyst structures and sequential learning", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/aced-differentiate/auto_cat", | ||
author="Lance Kavalsky", | ||
author_email="[email protected]", | ||
|
@@ -22,6 +28,6 @@ | |
], | ||
package_dir={"": "src"}, | ||
packages=find_packages(where="src"), | ||
install_requires=["numpy", "ase", "pymatgen", "fire",], | ||
install_requires=["numpy", "ase", "pymatgen", "fire"], | ||
include_package_data=True, | ||
) |