-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (34 loc) · 1020 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="tilescope_three",
version="0.0.1",
author="Henning Ulfarsson",
author_email="henningu@ru.is",
maintainer="Christian Nathaniel Bean",
maintainer_email="christianbean@ru.is",
url="https://github.com/PermutaTriangle/tilescope_three",
packages=find_packages(),
long_description=read("README.md"),
install_requires=[
'permuta==1.3.0',
'comb_spec_searcher==0.3.0',
'logzero==1.5.0',
'tilings==1.0.1',
'sympy==1.5.1',
],
dependency_links = [
'https://github.com/PermutaTriangle/Tilings/tarball/develop#egg=tilings-1.0.1',
],
setup_requires=['pytest-runner==5.1'],
tests_require=[
'pytest==5.3.3',
'pytest-cov==2.8.1',
'pytest-pep8==1.0.6',
'pytest-isort==0.3.1',
'pytest-timeout==1.3.4',
],
)