no requirements.txt
[python-dm-verity.git] / setup.cfg
blob581a39370505e4d2889172ade78993c2b6ee6bba
1 # This file is used to configure your project.
2 # Read more about the various options under:
3 # http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
5 [metadata]
6 name = dm-verity
7 description = dm-verity volume library
8 author = Marcin Cieślak
9 author-email = saper@saper.info
10 license = gpl3
11 long-description = file: README.rst
12 long-description-content-type = text/x-rst; charset=UTF-8
13 url = https://repo.or.cz/python-dm-verity
14 project-urls =
15     Documentation = https://pyscaffold.org/
16 # Change if running only on Windows, Mac or Linux (comma-separated)
17 platforms = any
18 # Add here all kinds of additional classifiers as defined under
19 # https://pypi.python.org/pypi?%3Aaction=list_classifiers
20 classifiers =
21     Development Status :: 4 - Beta
22     Programming Language :: Python
24 [options]
25 zip_safe = False
26 packages = find:
27 include_package_data = True
28 package_dir =
29     =src
30 # DON'T CHANGE THE FOLLOWING LINE! IT WILL BE UPDATED BY PYSCAFFOLD!
31 setup_requires = pyscaffold>=3.2a0,<3.3a0
32 # Add here dependencies of your project (semicolon/line-separated), e.g.
33 # install_requires = numpy; scipy
34 # The usage of test_requires is discouraged, see `Dependency Management` docs
35 # tests_require = pytest; pytest-cov
36 # Require a specific Python version, e.g. Python 2.7 or >= 3.4
37 # python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
39 [options.packages.find]
40 where = src
41 exclude =
42     tests
44 [options.extras_require]
45 # Add here additional requirements for extra features, to install with:
46 # `pip install dm-verity[PDF]` like:
47 # PDF = ReportLab; RXP
48 # Add here test requirements (semicolon/line-separated)
49 testing =
50     pytest
51     pytest-cov
53 [options.entry_points]
54 # Add here console scripts like:
55 # console_scripts =
56 #     script_name = dm_verity.module:function
57 # For example:
58 # console_scripts =
59 #     fibonacci = dm_verity.skeleton:run
60 # And any other entry points, for example:
61 # pyscaffold.cli =
62 #     awesome = pyscaffoldext.awesome.extension:AwesomeExtension
64 [test]
65 # py.test options when running `python setup.py test`
66 # addopts = --verbose
67 extras = True
69 [tool:pytest]
70 # Options for py.test:
71 # Specify command line options as you would do when invoking py.test directly.
72 # e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
73 # in order to write a coverage file that can be read by Jenkins.
74 addopts =
75     --cov dm_verity --cov-report term-missing
76     --verbose
77 norecursedirs =
78     dist
79     build
80     .tox
81 testpaths = tests
83 [aliases]
84 dists = bdist_wheel
86 [bdist_wheel]
87 # Use this option if your package is pure-python
88 universal = 1
90 [build_sphinx]
91 source_dir = docs
92 build_dir = build/sphinx
94 [devpi:upload]
95 # Options for the devpi: PyPI server and packaging tool
96 # VCS export must be deactivated since we are using setuptools-scm
97 no-vcs = 1
98 formats = bdist_wheel
100 [flake8]
101 # Some sane defaults for the code style checker flake8
102 exclude =
103     .tox
104     build
105     dist
106     .eggs
107     docs/conf.py
109 [pyscaffold]
110 # PyScaffold's parameters when the project was created.
111 # This will be used when updating. Do not change!
112 version = 3.2.3
113 package = dm_verity
114 extensions =
115     pre_commit
116     tox