-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.cfg
46 lines (39 loc) · 1.3 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
# This file is used to configure your project.
# Read more about the various options under:
# http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = touchstone
description = To compare benchmark results in elasticsearch
author = aakarshg
author_email = [email protected]
license = Apache License 2.0
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[options]
zip_safe = False
packages = find:
include_package_data = True
package_dir =
=src
# Add here dependencies of your project (semicolon/line-separated), e.g.
install_requires = elasticsearch<7.14.0; elasticsearch_dsl==7.3.0; tabulate; pyyaml; pandas; numpy >= 1.22.4, < 2.0.0
# tests_require = pytest; pytest-cov
python_requires=>=3.6,
[options.packages.find]
where = src
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install touchstone[PDF]` like:
# PDF = ReportLab; RXP
[options.entry_points]
# Add here console scripts like:
console_scripts =
touchstone_compare = touchstone.compare:render
[aliases]
dists = bdist_wheel
[bdist_wheel]
# Use this option if your package is pure-python
universal = 1