We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f978f95 + 6ddafc7 commit fb3c1feCopy full SHA for fb3c1fe
3 files changed
requirements.txt
setup.cfg
@@ -0,0 +1,5 @@
1
+[aliases]
2
+test=pytest
3
+
4
+[tool:pytest]
5
+testpaths = tilescopethree tests
setup.py
@@ -16,7 +16,17 @@ def read(fname):
16
maintainer="Christian Nathaniel Bean",
17
maintainer_email="christianbean@ru.is",
18
url="https://github.com/PermutaTriangle/tilescope_three",
19
- install_requires=read("requirements.txt").splitlines(),
20
packages=find_packages(),
21
long_description=read("README.md"),
+ 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
32
)
0 commit comments