Skip to content

Commit

Permalink
Now version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xnx committed Dec 1, 2021
1 parent 051a12c commit 9d4b6b6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pyparsing==2.4.6
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
from setuptools import setup, find_packages

long_description = """PyValem is a Python package for parsing, validating, manipulating and interpreting the chemical formulas, quantum states and labels of atoms, ions and small molecules.
Expand All @@ -7,16 +8,25 @@
See https://github.com/xnx/pyvalem for documentation and more information.
"""

# Read in dependencies list from requirements.txt
thelibFolder = os.path.dirname(os.path.realpath(__file__))
requirementPath = thelibFolder + '/requirements.txt'
install_requires = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()

setup(
name = 'pyvalem',
version = '2.2.0',
author = 'Christian Hill',
version = '2.3.0',
author = 'Christian Hill, Martin Hanicinec',
author_email = '[email protected]',
description = 'A package for managing simple chemical species and states',
long_description=long_description,
long_description_content_type="text/markdown",
url = 'https://github.com/xnx/pyvalem',
packages = find_packages(),
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
Expand Down

0 comments on commit 9d4b6b6

Please sign in to comment.