File: setup.py

package info (click to toggle)
acme-tiny 1%3A5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: python: 776; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 1,166 bytes parent folder | download
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
from setuptools import setup

setup(
    name="acme-tiny",
    use_scm_version=True,
    url="https://github.com/diafygi/acme-tiny",
    author="Daniel Roesler",
    author_email="diafygi@gmail.com",
    description="A tiny script to issue and renew TLS certs from Let's Encrypt",
    license="MIT",
    py_modules=['acme_tiny'],
    entry_points={'console_scripts': [
        'acme-tiny = acme_tiny:main',
    ]},
    setup_requires=['setuptools_scm'],
    classifiers = [
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: System Administrators',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
    ]
)