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
- Loading branch information
Showing
9 changed files
with
107 additions
and
210 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
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 = [email protected] | ||
maintainer = Ilya Etingof | ||
maintainer_email = [email protected] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,121 +5,6 @@ | |
# Copyright (c) 2005-2020, Ilya Etingof <[email protected]> | ||
# License: http://snmplabs.com/pyasn1/license.html | ||
# | ||
import sys | ||
import unittest | ||
from setuptools import setup | ||
|
||
|
||
doclines = """A collection of ASN.1-based protocols modules. | ||
A collection of ASN.1 modules expressed in form of pyasn1 classes. | ||
Includes protocols PDUs definition (SNMP, LDAP etc.) and various | ||
data structures (X.509, PKCS etc.). | ||
""" | ||
|
||
doclines = [x.strip() for x in doclines.split('\n') if x] | ||
|
||
|
||
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.5 | ||
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 | ||
Topic :: Communications | ||
Topic :: System :: Monitoring | ||
Topic :: System :: Networking :: Monitoring | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
""" | ||
|
||
|
||
def howto_install_setuptools(): | ||
print(""" | ||
Error: You need setuptools Python package! | ||
It's very easy to install it, just type (as root on Linux): | ||
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | ||
python ez_setup.py | ||
Then you could make eggs from this package. | ||
""") | ||
|
||
|
||
if sys.version_info[:2] < (2, 7): | ||
print("ERROR: this package requires Python 2.7 or later!") | ||
sys.exit(1) | ||
|
||
try: | ||
from setuptools import setup, Command | ||
|
||
params = { | ||
'zip_safe': True, | ||
'install_requires': ['pyasn1>=0.4.6,<0.6.0'] | ||
} | ||
|
||
except ImportError: | ||
for arg in sys.argv: | ||
if 'egg' in arg: | ||
howto_install_setuptools() | ||
sys.exit(1) | ||
|
||
from distutils.core import setup, Command | ||
|
||
params = { | ||
'requires': ['pyasn1(>=0.4.6,<0.6.0)'] | ||
} | ||
|
||
params.update( | ||
{'name': 'pyasn1-modules', | ||
'version': open('pyasn1_modules/__init__.py').read().split('\'')[1], | ||
'description': doclines[0], | ||
'long_description': ' '.join(doclines[1:]), | ||
'maintainer': 'Ilya Etingof <[email protected]>', | ||
'author': 'Ilya Etingof', | ||
'author_email': '[email protected]', | ||
'url': 'https://github.com/etingof/pyasn1-modules', | ||
'platforms': ['any'], | ||
'python_requires': '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', | ||
'classifiers': [x for x in classifiers.split('\n') if x], | ||
'license': 'BSD-2-Clause', | ||
'packages': ['pyasn1_modules'], | ||
'python_requires': '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*'}) | ||
|
||
|
||
class PyTest(Command): | ||
user_options = [] | ||
|
||
def initialize_options(self): | ||
pass | ||
|
||
def finalize_options(self): | ||
pass | ||
|
||
def run(self): | ||
suite = unittest.TestLoader().loadTestsFromNames( | ||
['tests.__main__.suite'] | ||
) | ||
|
||
unittest.TextTestRunner(verbosity=2).run(suite) | ||
|
||
params['cmdclass'] = { | ||
'test': PyTest, | ||
'tests': PyTest | ||
} | ||
|
||
setup(**params) | ||
setup() |
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()) |
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