-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
57 lines (52 loc) · 1.94 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import setuptools
import os.path
from os import listdir
import re
from numpy.distutils.core import setup
from pathlib import Path
def find_version(*paths):
fname = os.path.join(os.path.dirname(__file__), *paths)
with open(fname) as fp:
code = fp.read()
match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", code, re.M)
if match:
return match.group(1)
raise RuntimeError("Unable to find version string.")
# scripts = [str(x) for x in Path('Scripts').iterdir() if x.is_file()]
setup(
name='QuakeLabeler',
version=find_version('quakelabeler', '__init__.py'),
description='Fast AI Seismic Annotation Tools',
author='Hao Mai, Pascal Audet',
author_email='hmai090@uottawa.ca, pascal.audet@uottawa.ca',
maintainer='Hao Mai & Pascal Audet',
maintainer_email='hmai090@uottawa.ca',
url='https://github.com/maihao14/QuakeLabeler',
download_url='https://github.com/maihao14/QuakeLabeler/archive/refs/tags/v1.0.1.tar.gz',
keywords=['AI', 'earthquake', 'labeler', 'dataset'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'],
install_requires=['pygmt==0.3.1',
'ipython',
'numpy',
'obspy',
'scipy',
'requests',
'progress',
'matplotlib',
'termplotlib',
'art',
'h5py'],
python_requires='>=3.7',
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'': ['static/*']},
# scripts=scripts)
entry_points={
'console_scripts':
['QuakeLabeler=quakelabeler.scripts.QuakeLabeler:main',
'requests_isc=quakelabeler.scripts.requests_isc:main']})