-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
42 lines (37 loc) · 968 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
33
34
35
36
37
38
39
40
41
42
[metadata]
name = hidc
version = 0.1.0
author = Ben Burrill
author_email = bburrill98@gmail.com
description = A prophecy-optimized language for the Sphinx architecture
long_description = README.rst
license_file = LICENSE
classifiers =
Topic :: Software Development :: Compilers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
[options]
python_requires = >=3.10
package_dir =
hidc = hidc
[options.entry_points]
console_scripts =
hidc = hidc.__main__:main
[tox:tox]
min_version = 4.0
env_list =
py310
py311
[testenv:{py,py311}]
deps =
pytest
coverage
sphinx-emulator @ git+https://github.com/benburrill/sphinx@00bab1c3e04ecc739bfc3280e9f4bcca3fdbd108
commands =
coverage run --branch --source hidc -m pytest tests
coverage report
coverage html
[testenv]
deps =
pytest
sphinx-emulator @ git+https://github.com/benburrill/sphinx@00bab1c3e04ecc739bfc3280e9f4bcca3fdbd108
commands = pytest tests