forked from arkottke/pystrata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.26 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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
with open("README.rst") as fp:
readme = fp.read()
with open("HISTORY.rst") as fp:
history = fp.read()
setup(
name="pyStrata",
version="0.5.1",
description="Site Response Analysis with Python",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
author="Albert Kottke",
author_email="albert.kottke@gmail.com",
url="http://github.com/arkottke/pystrata",
packages=find_packages(),
install_requires=[
"matplotlib",
"numpy",
"pyrvt",
"pykooh",
"scipy",
"setuptools",
"typing",
],
extras_require={
"dataframe": ["pandas"],
},
keywords="site response",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
],
test_suite="tests",
)