-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
56 lines (53 loc) · 1.52 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
51
52
53
54
55
56
"""
Setup script for the pyvolcans library
"""
import pathlib
from setuptools import setup
import versioneer
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="pyvolcans",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A tool for identifying volcano analogues.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/BritishGeologicalSurvey/pyvolcans",
author="BGS Volcanology",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
packages=["pyvolcans"],
include_package_data=True,
install_requires=[
'numpy',
'pandas',
'pymatreader',
'matplotlib',
'thefuzz'
],
extras_require={
'dev': ['flake8',
'ipdb',
'ipython',
'pytest',
'pytest-cov',
'versioneer'
]},
entry_points={
"console_scripts": [
"pyvolcans=pyvolcans.pyvolcans:cli",
]
},
)