Skip to content

Commit

Permalink
Specify dependencies in setup.py and refer to them in requirements.tx…
Browse files Browse the repository at this point in the history
…t - see jleclanche#318
  • Loading branch information
smallnamespace committed Feb 18, 2016
1 parent 58bba43 commit 29179d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-e git+https://github.com/HearthSim/python-hearthstone.git#egg=hearthstone
pytest
-e .

8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,24 @@
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Games/Entertainment :: Simulation",
]

setup(
name="fireplace",
version=fireplace.__version__,
packages=find_packages(exclude="tests"),
package_data={"": ["CardDefs.xml"]},
package_data={"fireplace": ["CardDefs.xml"]},
include_package_data=True,
install_requires=["hearthstone"],
dependency_links=["git+https://github.com/HearthSim/python-hearthstone.git#egg=hearthstone"],
tests_require=["pytest"],
author=fireplace.__author__,
author_email=fireplace.__email__,
description="Pure-python Hearthstone re-implementation and simulator",
classifiers=CLASSIFIERS,
download_url="https://github.com/jleclanche/python-bna/tarball/master",
download_url="https://github.com/jleclanche/fireplace/tarball/master",
long_description=README,
license="AGPLv3",
url="https://github.com/jleclanche/fireplace",
Expand Down

0 comments on commit 29179d9

Please sign in to comment.