-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (26 loc) · 828 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
from setuptools import find_packages, setup
from gmspy import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gmspy',
version=__version__,
description='Ground Motions Signal Processing for Python',
long_description=long_description,
long_description_content_type="text/markdown",
author='Yexiang Yan',
author_email='[email protected]',
url='https://github.com/yexiang1992',
license='GPL Licence',
keywords='Ground Motions Seismic IMs response spectra',
platforms='any',
python_requires='>=3.8',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
install_requires=[
'matplotlib', 'numpy', 'scipy', 'joblib', 'numba', 'rich'
],
include_package_data=True,
)