forked from etingof/pyasn1-modules
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- move ``setup.py`` infos to ``setup.cfg`` - use ``build`` to build sdist and wheel - simplify ``tox.ini`` - drop Python 3.5 - use ``unittest discover`` to discover tests - /~https://github.com/etingof -> /~https://github.com/pyasn1 - drop TravisCI - test sdist, add dev1 version suffix - change maintainer contact, validate metadata
- Loading branch information
Showing
11 changed files
with
149 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
*.pyc | ||
__pycache__ | ||
.tox | ||
.coverage | ||
|
||
# vim swapfiles | ||
*.sw? | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# http://www.python.org/dev/peps/pep-0396/ | ||
__version__ = '0.3.0' | ||
__version__ = '0.3.0.dev1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools" | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,54 @@ | ||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[metadata] | ||
name = pyasn1_modules | ||
version = attr: pyasn1_modules.__version__ | ||
description = A collection of ASN.1-based protocols modules | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
license = BSD | ||
license_file = LICENSE.txt | ||
url = /~https://github.com/pyasn1/pyasn1-modules | ||
author = Ilya Etingof | ||
author_email = etingof@gmail.com | ||
maintainer = pyasn1 maintenance organization | ||
maintainer_email = Christian Heimes <christian@python.org> | ||
project_urls = | ||
Source=/~https://github.com/pyasn1/pyasn1-modules | ||
Issues=/~https://github.com/pyasn1/pyasn1-modules/issues | ||
Changelog=/~https://github.com/pyasn1/pyasn1-modules/blob/master/CHANGES.txt | ||
platforms = any | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Environment :: Console | ||
Intended Audience :: Developers | ||
Intended Audience :: Education | ||
Intended Audience :: Information Technology | ||
Intended Audience :: System Administrators | ||
Intended Audience :: Telecommunications Industry | ||
License :: OSI Approved :: BSD License | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Programming Language :: Python :: Implementation :: PyPy | ||
Topic :: Communications | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
|
||
[options] | ||
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* | ||
zip_safe = True | ||
setup_requires = setuptools | ||
install_requires = | ||
pyasn1>=0.4.6,<0.6.0 | ||
packages = | ||
pyasn1_modules | ||
|
||
[bdist_wheel] | ||
universal = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# This file is part of pyasn1-modules software. | ||
# | ||
import sys | ||
import unittest | ||
|
||
# modules without tests | ||
from pyasn1_modules import ( | ||
rfc1155, rfc1157, rfc1901, rfc3412, rfc3414 | ||
) | ||
|
||
suite = unittest.TestLoader().loadTestsFromModule(sys.modules[__name__]) | ||
|
||
if __name__ == '__main__': | ||
import sys | ||
|
||
result = unittest.TextTestRunner(verbosity=2).run(suite) | ||
sys.exit(not result.wasSuccessful()) |
Oops, something went wrong.