forked from etingof/pyasn1-modules
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
113 lines (90 loc) · 2.99 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/usr/bin/env python
#
# This file is part of pyasn1-alt-modules software.
#
# Copyright (c) 2005-2020, Ilya Etingof <[email protected]>
# Copyright (c) 2021-2025, Vigil Security, LLC
# License: http://vigilsec.com/pyasn1-alt-modules-license.txt
#
import sys
import unittest
doclines = """A alternate 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, OCSP, and so on) as
well as various data structures (X.509, PKCS, and so on).
"""
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 :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Communications
Topic :: Software Development :: Libraries :: Python Modules
"""
def howto_install_setuptools():
print("""
Error: You need setuptools Python package!
It's very easy to install it; see https://pypi.org/project/ez_setup/.
""")
if sys.version_info[:2] < (3, 8):
print("ERROR: this package requires Python 3.8 or later!")
sys.exit(1)
try:
from setuptools import setup, Command
params = {
'zip_safe': True,
'install_requires': ['pyasn1>=0.5.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.5.0']
}
params.update(
{'name': 'pyasn1-alt-modules',
'version': open('pyasn1_alt_modules/__init__.py').read().split('\'')[1],
'description': doclines[0],
'long_description': ' '.join(doclines[1:]),
'long_description_content_type': 'text/plain',
'maintainer': 'Russ Housley <[email protected]>',
'author': 'Russ Housley',
'author_email': '[email protected]',
'url': 'https://github.com/russhousley/pyasn1-alt-modules',
'platforms': ['any'],
'classifiers': [x for x in classifiers.split('\n') if x],
'license': 'BSD-2-Clause',
'packages': ['pyasn1_alt_modules'],
'python_requires': '>=3.8'})
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)