-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·50 lines (44 loc) · 1.82 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
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Pisces: A Practical Seismological Database Library in Python
"""
from setuptools import setup
# from numpy.distutils.core import setup, Extension
with open('README.md') as readme:
# https://dustingram.com/articles/2018/03/16/markdown-descriptions-on-pypi
long_description = readme.read()
doclines = __doc__.split("\n")
setup(name='pisces',
version='0.4.5',
description='A Practical Seismological Database Library in Python.',
long_description=long_description,
long_description_content_type="text/markdown", # setuptools >= 38.6.0
author='Jonathan MacCarthy',
author_email='[email protected]',
packages=['pisces','pisces.schema','pisces.io','pisces.tables',
'pisces.commands'],
url='https://github.com/LANL-Seismoacoustics/pisces',
download_url='https://github.com/LANL-Seismoacoustics/pisces/tarball/0.4.2',
keywords = ['seismology', 'geophysics', 'database'],
install_requires=['numpy','obspy>=1.4.1','sqlalchemy>=1.4','Click'],
extras_require={
'e1': ["e1"],
},
entry_points = """
[console_scripts]
pisces=pisces.commands.main:cli
""",
license='LANL-MIT',
platforms=['Mac OS X', 'Linux/Unix'],
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Database',
'Topic :: Scientific/Engineering :: Physics'],
)