-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (36 loc) · 798 Bytes
/
setup.cfg
File metadata and controls
40 lines (36 loc) · 798 Bytes
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
[metadata]
name = exaparser
author = Exabyte Inc.
author_email = info@exabyte.io
description = Exabyte Parser
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Exabyte-io/exaparser
classifiers =
Programming Language :: Python
Development Status :: 3 - Alpha
Topic :: Software Development
[options]
package_dir =
= .
packages = find:
python_requires = >= 3.6
install_requires =
exabyte-api-client>=2024.2.2.post1
express-py>=2024.2.2.post2
requests>=2.26.0
[options.extras_require]
test =
coverage[toml]>=5.3
mock>=1.3.0
numpy>=1.17.3
[options.entry_points]
console_scripts =
exaparser = exaparser.cli:main
[options.packages.find]
where = .
exclude =
examples
docs
tests
tests.*