Skip to content

Commit

Permalink
modify readme + setup.py to render on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
hegdevinayi committed May 23, 2022
1 parent c1775c3 commit 0e203f7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ via:
```
pip install -e .
```

## Contributing

Contributions through issues, feature requests, and pull requests are welcome.
Guidelines are provided [here](CONTRIBUTING.md).
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]",
Expand All @@ -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,
)

0 comments on commit 0e203f7

Please sign in to comment.