| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import os
- import shutil
- from setuptools import setup, find_packages, Command
- from asn1crypto import version
- class CleanCommand(Command):
- user_options = [
- ('all', 'a', '(Compatibility with original clean command)'),
- ]
- def initialize_options(self):
- self.all = False
- def finalize_options(self):
- pass
- def run(self):
- folder = os.path.dirname(os.path.abspath(__file__))
- for sub_folder in ['build', 'dist', 'asn1crypto.egg-info']:
- full_path = os.path.join(folder, sub_folder)
- if os.path.exists(full_path):
- shutil.rmtree(full_path)
- for root, dirnames, filenames in os.walk(os.path.join(folder, 'asn1crypto')):
- for filename in filenames:
- if filename[-4:] == '.pyc':
- os.unlink(os.path.join(root, filename))
- for dirname in list(dirnames):
- if dirname == '__pycache__':
- shutil.rmtree(os.path.join(root, dirname))
- setup(
- name='asn1crypto',
- version=version.__version__,
- description=(
- 'Fast ASN.1 parser and serializer with definitions for private keys, '
- 'public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, '
- 'PKCS#12, PKCS#5, X.509 and TSP'
- ),
- long_description='Docs for this project are maintained at https://github.com/wbond/asn1crypto#readme.',
- url='https://github.com/wbond/asn1crypto',
- author='wbond',
- author_email='will@wbond.net',
- license='MIT',
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: MIT License',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3.2',
- 'Programming Language :: Python :: 3.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: Implementation :: PyPy',
- 'Topic :: Security :: Cryptography',
- ],
- keywords='asn1 crypto pki x509 certificate rsa dsa ec dh',
- packages=find_packages(exclude=['tests*', 'dev*']),
- test_suite='tests.make_suite',
- cmdclass={
- 'clean': CleanCommand,
- }
- )
|