-
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.
- Loading branch information
Cyrille Lavigne
committed
Apr 15, 2021
1 parent
f6dcd1d
commit 6c690db
Showing
3 changed files
with
56 additions
and
4 deletions.
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 |
---|---|---|
@@ -1,19 +1,46 @@ | ||
"""Install fchic.""" | ||
import setuptools | ||
from os import path | ||
|
||
# read the contents of your README file | ||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
|
||
setuptools.setup( | ||
name="fchic", | ||
version="0.1.0", | ||
author="Cyrille Lavigne", | ||
author_email="[email protected]", | ||
description="", | ||
url="https://github.com/aspuru-guzik-group/fchic", | ||
description="fchic is a minimal parser for Gaussian 16 formatted checkpoint files.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/clavigne/fchic", | ||
package_dir={"": "src"}, | ||
package_data={"fchic": ["py.typed"]}, # mypy exports | ||
packages=setuptools.find_namespace_packages(where="src"), | ||
license="MIT", | ||
# Dependencies | ||
python_requires=">=3.7", | ||
install_requires=[ | ||
"pyparsing", | ||
'importlib-metadata ~= 1.0 ; python_version < "3.8"', | ||
], | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
# | ||
"Typing :: Typed", | ||
# | ||
"License :: OSI Approved :: MIT License", | ||
# | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
# | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Chemistry", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
], | ||
keywords="chemistry gaussian16 g16", | ||
) |
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