Initial commit
This commit is contained in:
42
setup.cfg
Normal file
42
setup.cfg
Normal file
@@ -0,0 +1,42 @@
|
||||
[metadata]
|
||||
name = "pyrad3"
|
||||
version = "0.1.0"
|
||||
author = Istvan Ruzman
|
||||
author-email = "istvan@ruzman.eu"
|
||||
description = "RADIUS tools"
|
||||
platform = any
|
||||
long-description = file: README.md
|
||||
long_description_content_type = text/markdown
|
||||
license = MIT OR APACHE 2.0
|
||||
keywords = "authentication accounting radius"
|
||||
classifiers=[
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Topic :: System :: Systems Administration :: Authentication/Directory"
|
||||
]
|
||||
|
||||
[options]
|
||||
zip_safe = true
|
||||
include_package_data = true
|
||||
python_requires = >= 3.6
|
||||
packages = pyrad3
|
||||
setup_requires = setuptools
|
||||
tests_require =
|
||||
pytest
|
||||
pytest-cov
|
||||
|
||||
[bdist_wheel]
|
||||
universal = true
|
||||
|
||||
[sdist]
|
||||
formats = zip, gztar
|
||||
|
||||
[flake8]
|
||||
max-line-length = 100
|
||||
doctests = True
|
||||
Reference in New Issue
Block a user