Skip to content

Commit fb3c1fe

Browse files
Merge pull request #37 from PermutaTriangle/freeze_req
Freeze the requirement of tilescope
2 parents f978f95 + 6ddafc7 commit fb3c1fe

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

requirements.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[aliases]
2+
test=pytest
3+
4+
[tool:pytest]
5+
testpaths = tilescopethree tests

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,17 @@ def read(fname):
1616
maintainer="Christian Nathaniel Bean",
1717
maintainer_email="christianbean@ru.is",
1818
url="https://github.com/PermutaTriangle/tilescope_three",
19-
install_requires=read("requirements.txt").splitlines(),
2019
packages=find_packages(),
2120
long_description=read("README.md"),
21+
install_requires=[
22+
'permuta==1.1.0',
23+
'comb_spec_searcher==0.2.1',
24+
'logzero==1.5.0',
25+
'tilings==1.0.1',
26+
'sympy==1.4',
27+
],
28+
setup_requires=['pytest-runner==5.1'],
29+
tests_require=[
30+
'pytest==5.1.1',
31+
],
2232
)

0 commit comments

Comments
 (0)