-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (44 loc) · 1.66 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
from setuptools import setup, find_packages
with open("Readme.md", encoding='utf8') as fh:
long_description = fh.read()
setup(
name="hvsrUNet",
version="0.0.1",
author="Zhiyu Zhang",
author_email="[email protected]",
url="https://github.com/erbiaoger/hvsrUNet",
description="hvsrUNet - open source software for HVSR analysis with deep learning",
long_description=long_description,
long_description_content_type="text/markdown",
#packages=['hvsrUNet'],
packages=find_packages(),
package_data={'hvsrUNet': [
]},
data_files=[
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
"Operating System :: OS Independent",
],
project_urls={
'Bug Reports': 'https://github.com/erbiaoger/hvsrUNet/issues',
'Source': 'https://github.com/erbiaoger/hvsrUNet',
'Docs': 'https://github.com/erbiaoger/hvsrUNet/docs',
},
keywords='horizontal-to-vertical spectral ratio hv hvsr deep learning',
#install_requires=['torch', 'matplotlib', 'sklearn'],
#entry_points={'console_scripts': ['hvsrUNet = hvsrUNet.__main__:main']},
# entry_points={
# 'console_scripts': [
# 'hvsrUNet = hvsrUNet.cli:cli'
# ],
# },
)