Skip to content

Commit

Permalink
Merge pull request #39 from rsdefever/maint/requirements
Browse files Browse the repository at this point in the history
Update requirements files to be consistent with conda build
  • Loading branch information
rsdefever authored Mar 26, 2020
2 parents c0b23dc + 9f33011 commit 4e1b03b
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
numpy
parmed
networkx
foyer >= 0.7.3
mbuild >= 0.10.5
openbabel
Expand Down
1 change: 1 addition & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
numpy
parmed
networkx
foyer >= 0.7.3
mbuild >= 0.10.5
openbabel
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy
parmed
foyer >= 0.7.3
networkx
mbuild >= 0.10.5
cassandra >= 1.2.2
26 changes: 22 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,29 @@
from setuptools import setup, find_packages

#####################################
VERSION = "0.1.1"
ISRELEASED = True
if ISRELEASED:
__version__ = VERSION
else:
__version__ = VERSION + ".dev0"
#####################################

requirements = [
"numpy",
"parmed",
"networkx",
"mbuild >=0.10.5",
]

setup(
name="mosdef_cassandra",
version="0.0.0",
author="Ryan S. DeFever",
author_email="[email protected]",
url="https://github.com/rsdefever/mosdef_cassandra",
version=__version__,
packages=find_packages(),
license="MIT",
author="Ryan S. DeFever",
author_email="[email protected]",
url="https://github.com/MaginnGroup/mosdef_cassandra",
install_requires=requirements,
python_requires=">=3.6, <4",
)

0 comments on commit 4e1b03b

Please sign in to comment.