-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
53 lines (44 loc) · 1.19 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Packaging Information
# =====================
#
# LabCAS Downloader
[metadata]
name = jpl.labcas.downloader
description = A simple Python package to download files from LabCAS
author = Asitang Mishra
author_email = [email protected]
maintainer = Sean Kelly
maintainer_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
version = file: src/jpl/labcas/downloader/VERSION.txt
license = apache-2.0
keywords = laboratory, data, labcas, downloader, automation
url = https://github.com/EDRN/labcas-downloader
download_url = https://github.com/EDRN/labcas-downloader/releases/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
# Options
# -------
[options]
install_requires = requests == 2.26.0
zip_safe = True
include_package_data = True
namespace_packages =
jpl
jpl.labcas
package_dir =
= src
packages = find_namespace:
python_requires = >= 3.8
[options.entry_points]
console_scripts =
jpl-labcas-downloader = jpl.labcas.downloader.main:main
[options.packages.find]
where = src
[options.extras_require]
dev =
wheel
build