Skip to content

Commit

Permalink
Merge pull request #37 from PermutaTriangle/freeze_req
Browse files Browse the repository at this point in the history
Freeze the requirement of tilescope
  • Loading branch information
christianbean authored Aug 27, 2019
2 parents f978f95 + 6ddafc7 commit fb3c1fe
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[aliases]
test=pytest

[tool:pytest]
testpaths = tilescopethree tests
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ def read(fname):
maintainer="Christian Nathaniel Bean",
maintainer_email="[email protected]",
url="https://github.com/PermutaTriangle/tilescope_three",
install_requires=read("requirements.txt").splitlines(),
packages=find_packages(),
long_description=read("README.md"),
install_requires=[
'permuta==1.1.0',
'comb_spec_searcher==0.2.1',
'logzero==1.5.0',
'tilings==1.0.1',
'sympy==1.4',
],
setup_requires=['pytest-runner==5.1'],
tests_require=[
'pytest==5.1.1',
],
)

0 comments on commit fb3c1fe

Please sign in to comment.