forked from SCECcode/ts-process
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.39 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.39 KB
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
from numpy.distutils.core import setup, Extension
with open("README.md", "r") as fh:
long_description = fh.read()
ext1 = Extension(name='tsprocess.fsc.rsp', sources=['tsprocess/fsc/rsp.f95'])
setup(
name="tsprocess",
version="0.0.2",
author="Naeem Khoshnevis",
author_email="khoshnevis.naeem@gmail.com",
maintainer="Naeem Khoshnevis, Fabio Silva, Ricardo Taborda, Christine Goulet",
maintainer_email = "khoshnevis.naeem@gmail.com,fsilva@usc.edu, rtaborda@eafit.edu.co,cgoulet@usc.edu",
description="Ground motion time series processing tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Naeemkh/ts-process",
license="BSD 3-Clause",
packages=setuptools.find_packages(exclude=['docs*', 'tests*']),
ext_modules = [ext1],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
python_requires='>=3.7',
)