-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
49 lines (43 loc) · 1.26 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
[build-system]
requires = ["setuptools>=64.0","wheel"]
build-backend = "setuptools.build_meta"
[metadata]
name = caltechdata_api
version = 1.9.1
author = Thomas E Morrell, Rohan Bhattarai, Elizabeth Won, Alexander A Abakah
author_email = [email protected], [email protected]
description = Python wrapper for CaltechDATA API.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/caltechlibrary/caltechdata_api
license = MIT
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.6.0
install_requires =
requests
datacite>1.1.0
tqdm>=4.62.3
pyyaml
s3fs
cryptography
s3cmd
include_package_data = True
[options.packages.find]
exclude = tests
[options.package_data]
caltechdata_api = vocabularies.yaml, vocabularies/*
[options.entry_points]
console_scripts =
caltechdata_api=caltechdata_api.cli:main
[tool:pytest]
addopts = --verbose