-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
13 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pyparsing==2.4.6 |
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,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. | ||
|
@@ -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)", | ||
|