-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (39 loc) · 1.54 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
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
from setuptools import setup
import versioneer
with open('README.md', 'rb') as f:
long_descr = f.read().decode('utf-8')
setup(
name='axirunner',
packages=['axirunner', 'axirunner.configobj'],
include_package_data=True,
entry_points={
'console_scripts': ['axirunner = axirunner.axirunner:main']
},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Make synthetic seismograms using Axitra. The easy way™.',
long_description=long_descr,
long_description_content_type='text/markdown',
author='Claudio Satriano',
author_email='[email protected]',
url='http://www.ipgp.fr/~satriano',
license='CeCILL Free Software License Agreement, Version 2.1',
platforms='OS Independent',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: CEA CNRS Inria Logiciel Libre '
'License, version 2.1 (CeCILL-2.1)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'],
install_requires=['obspy>=1.2.0', 'scipy>=0.17', 'proj'],
python_requires='>3'
)