|
30 | 30 |
|
31 | 31 | __version__ = _pkg_resources.get_distribution(__name__).version |
32 | 32 | __license__ = "MIT" # I'm too lazy to get it from setup.py... |
| 33 | + |
| 34 | +__headline__ = "📈 Create and analyze chemical microkinetic models built from computational chemistry data." |
| 35 | + |
| 36 | +__url_repo__ = "https://github.com/geem-lab/overreact" |
| 37 | +__url_issues__ = f"{__url_repo__}/issues" |
| 38 | +__url_discussions__ = f"{__url_repo__}/discussions" |
| 39 | +__url_pypi__ = "https://pypi.org/project/overreact/" |
| 40 | +__url_guide__ = "https://geem-lab.github.io/overreact-guide/" |
| 41 | + |
33 | 42 | __doi__ = "10.5281/ZENODO.5643960" |
34 | 43 | __citation__ = r""" |
35 | 44 | @misc{overreact2021, |
36 | | - howpublished = {\url{https://github.com/geem-lab/overreact}} |
| 45 | + howpublished = {\url{URL_REPO_PLACEHOLDER}}, |
37 | 46 | year = {2021}, |
38 | 47 | author = {Schneider, F. S. S. and Caramori, G. F.}, |
39 | 48 | title = { |
40 | 49 | \textbf{geem-lab/overreact}: a tool for creating and analyzing |
41 | 50 | microkinetic models built from computational chemistry data, v1.0.1 |
42 | 51 | }, |
43 | | - doi = {10.5281/ZENODO.5643960}, |
| 52 | + doi = {DOI_PLACEHOLDER}, |
44 | 53 | url = {https://zenodo.org/record/5643960}, |
45 | 54 | publisher = {Zenodo}, |
46 | 55 | copyright = {Open Access} |
47 | 56 | } |
48 | | -""" |
49 | | -__url_pypi__ = "https://pypi.org/project/overreact/" |
50 | | -__url_guide__ = "https://geem-lab.github.io/overreact-guide/" |
51 | | -__url_discussions__ = "https://github.com/geem-lab/overreact/discussions" |
52 | | -__url_issues__ = "https://github.com/geem-lab/overreact/issues" |
53 | | -__repo__ = "https://github.com/geem-lab/overreact" |
54 | | -__headline__ = "📈 Create and analyze chemical microkinetic models built from computational chemistry data." |
| 57 | +""".replace( |
| 58 | + "DOI_PLACEHOLDER", __doi__ |
| 59 | +).replace( |
| 60 | + "URL_REPO_PLACEHOLDER", __url_repo__ |
| 61 | +) |
0 commit comments