mirror of
https://gitlab.com/scemama/resultsFile.git
synced 2024-12-21 11:53:37 +01:00
Fixed gamess for STO
This commit is contained in:
parent
698a592251
commit
c37c5a441c
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
@ -0,0 +1,2 @@
|
||||
include README.md
|
||||
|
46
setup.py
46
setup.py
@ -24,31 +24,29 @@
|
||||
# 31062 Toulouse Cedex 4
|
||||
# scemama@irsamc.ups-tlse.fr
|
||||
|
||||
import sys
|
||||
|
||||
import setuptools
|
||||
|
||||
from distutils.core import setup
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
"""
|
||||
- To create a source distribution, run:
|
||||
|
||||
python setup.py sdist
|
||||
|
||||
- To install the module, run:
|
||||
|
||||
python setup.py install
|
||||
|
||||
- To create an rpm distribution
|
||||
|
||||
python setup.py bdist_rpm
|
||||
"""
|
||||
|
||||
import os
|
||||
setup(name="resultsFile",
|
||||
version=os.getenv("VERSION","1.0"),
|
||||
author="Anthony Scemama",
|
||||
author_email="scemama@irsamc.ups-tlse.fr",
|
||||
license="gpl-license",
|
||||
description="Module for I/O on Quantum Chemistry files.",
|
||||
packages=["resultsFile","resultsFile.lib","resultsFile.Modules"]
|
||||
)
|
||||
setuptools.setup(
|
||||
name="resultsFile",
|
||||
version='2.0',
|
||||
author="Anthony Scemama",
|
||||
author_email="scemama@irsamc.ups-tlse.fr",
|
||||
description="Module for reading output files of quantum chemistry codes.",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://gitlab.com/scemama/resultsFile",
|
||||
download_url="https://gitlab.com/scemama/resultsFile/-/archive/v2.0/resultsFile-v2.0.tar.gz",
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
],
|
||||
keywords = ['quantum chemistry', 'GAMESS', 'Gaussian', 'Molpro'],
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user