forked from claudiodsf/nllgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.61 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
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: CECILL-2.1
"""setup.py: setuptools control."""
from setuptools import setup
import versioneer
with open('README.md', 'rb') as f:
long_descr = f.read().decode('utf-8').replace(
'(CHANGELOG.md)',
'(https://cdn.jsdelivr.net/gh/claudiodsf/nllgrid/CHANGELOG.md)'
)
setup(
name='nllgrid',
packages=['nllgrid', ],
include_package_data=True,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Python class for reading and writing NonLinLoc grid files',
long_description=long_descr,
long_description_content_type='text/markdown',
author='Claudio Satriano',
author_email='[email protected]',
url='https://github.com/claudiodsf/nllgrid',
license='CeCILL Free Software License Agreement, Version 2.1',
platforms='OS Independent',
classifiers=[
'Development Status :: 5 - Production/Stable',
'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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'],
install_requires=['numpy>=1.0', 'scipy>=0.16', 'pyproj']
)