-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (36 loc) · 1.37 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
"""PyVIMS setup."""
from pathlib import Path
from setuptools import find_packages, setup
HERE = Path(__file__).parent
README = (HERE / 'README.rst').read_text()
REQUIREMENTS = (HERE / 'requirements.txt').read_text().split()
setup(
name='pyvims',
version='1.0.5',
description='Python package to manipulate the Cassini VIMS data',
long_description=README,
author='Benoit Seignovert (LPG-Nantes)',
author_email='[email protected]',
url='https://github.com/seignovert/pyvims',
license='BSD',
keywords=['cassini', 'vims', 'titan'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Atmospheric Science',
],
python_requires='>=3.6',
install_requires=REQUIREMENTS,
packages=find_packages(exclude=['binder', 'tests', 'notebooks']),
include_package_data=True,
)