-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 725 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="SpectDetect",
version="0.0.3",
author="Tom Hudson",
description="Microseismic detection algorithm package based on using key features in the spectrum of a source to detect earthquakes over a given time period.",
url="https://github.com/TomSHudson/SpectDetect",
packages=['SpectDetect'],
license='MIT',
classifiers=(
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
)
)