-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
75 lines (69 loc) · 1.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[metadata]
url = https://github.com/satra/cmixf
author = satra
author_email = [email protected]
maintainer = satra
maintainer_email = [email protected]
description = A CMIXF-12 library
long_description = file:README.md
long_description_content_type = text/markdown; charset=UTF-8
license = Apache License, 2.0
provides =
cmixf
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering
[options]
python_requires = >= 3.7
install_requires =
sly
click
test_requires =
pytest >= 4.4.0
pytest-cov
pytest-env
pytest-xdist
pytest-rerunfailures
codecov
packages = find:
include_package_data = True
[options.extras_require]
test =
pytest >= 4.4.0
pytest-cov
pytest-env
pytest-xdist
pytest-rerunfailures
codecov
tests =
%(test)s
dev =
%(test)s
black
pre-commit
all =
%(dev)s
[options.entry_points]
console_scripts =
cmixf=cmixf.parser:main
[versioneer]
VCS = git
style = pep440
versionfile_source = cmixf/_version.py
versionfile_build = cmixf/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
doctests = True
exclude =
**/__init__.py
**/tests/*
*build/
cmixf/_version.py
max-line-length=99