-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 882 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
import os
from setuptools import setup, find_packages
def src(pth):
return os.path.join(os.path.dirname(__file__), pth)
# Project description
descr = """
HTracker
"""
# Setup
setup(
name='htracker',
description=descr,
long_description=open(src('README.md')).read(),
long_description_content_type='text/markdown',
author='cebirnie92',
author_email='[email protected]',
install_requires=['numpy >= 1.15.0', 'scipy', 'pandas', 'pylops', 'pyproximal'],
extras_require={'advanced': ['llvmlite', 'numba']},
packages=find_packages(exclude=['pytests']),
use_scm_version=dict(root='.',
relative_to=__file__,
write_to=src('htracker/version.py')),
setup_requires=['pytest-runner', 'setuptools_scm'],
test_suite='pytests',
tests_require=['pytest'],
zip_safe=True)