-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
32 lines (30 loc) · 923 Bytes
/
setup.cfg
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
[metadata]
name = sampex
version = 1.0.0
description = 'Programs to load and plot the SAMPEX satellite data.'
long_description = file: README.md
url=https://github.com/mshumko/sampex
author='M. Shumko'
author_email="M. Shumko" <[email protected]>
long_description_content_type = text/markdown
keywords = data science, SAMPEX, satellite, HILT, PET, LICA
python_requires='>=3.0'
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages = find:
# The packages required for a general users. Here we don't want to pin down the exact
# version to avoid dependency hell.
install_requires =
matplotlib
numpy
pandas
beautifulsoup4
requests
[options.entry_points]
console_scripts =
plot_sampex = sampex.plot_sampex:main