-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
35 lines (32 loc) · 1015 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
30
31
32
33
34
35
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="pyRotd",
version="0.6.1",
description="Rotated response spectrum calculation implemented in Python.",
long_description=readme + "\n\n" + history,
url="http://github.com/arkottke/pyrotd",
author="Albert Kottke",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
"numpy",
"setuptools",
],
keywords=["response spectrum", "earthquake ground motion"],
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
],
test_suite="tests",
)