mirror of
https://github.com/sprockets/sprockets.mixins.avro-publisher.git
synced 2024-11-25 11:19:51 +00:00
Changes to the setup files
This commit is contained in:
parent
bf3821ac50
commit
7d25213c17
2 changed files with 23 additions and 8 deletions
27
setup.cfg
27
setup.cfg
|
@ -1,15 +1,28 @@
|
||||||
[bdist_wheel]
|
[bdist_wheel]
|
||||||
universal = 1
|
universal = 1
|
||||||
|
|
||||||
[nosetests]
|
[coverage:run]
|
||||||
cover-branches = 1
|
branch = True
|
||||||
cover-erase = 1
|
command_line = -m unittest discover tests --verbose
|
||||||
cover-package = sprockets.mixins.avro_publisher
|
data_file = build/.coverage
|
||||||
with-coverage = 1
|
|
||||||
verbosity = 2
|
[coverage:report]
|
||||||
|
show_missing = True
|
||||||
|
include = sprockets/mixins/avro_publisher/*.py
|
||||||
|
omit =
|
||||||
|
tests.py
|
||||||
|
|
||||||
|
[coverage:html]
|
||||||
|
directory = build/coverage
|
||||||
|
|
||||||
|
[coverage:xml]
|
||||||
|
output = build/coverage.xml
|
||||||
|
|
||||||
[upload_docs]
|
[upload_docs]
|
||||||
upload-dir = build/sphinx/html
|
upload-dir = build/sphinx/html
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
exclude = env,build
|
application-import-names = sprockets.mixins,tests
|
||||||
|
exclude = build,dist,docs,env
|
||||||
|
import-order-style = pycharm
|
||||||
|
rst-roles = attr,class,const,data,exc,func,meth,mod,obj
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -31,7 +31,7 @@ setuptools.setup(
|
||||||
author_email='api@aweber.com',
|
author_email='api@aweber.com',
|
||||||
license='BSD',
|
license='BSD',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Natural Language :: English',
|
'Natural Language :: English',
|
||||||
|
@ -41,6 +41,8 @@ setuptools.setup(
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: Implementation :: CPython',
|
'Programming Language :: Python :: Implementation :: CPython',
|
||||||
'Topic :: Software Development :: Libraries',
|
'Topic :: Software Development :: Libraries',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules'
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
||||||
|
|
Loading…
Reference in a new issue