File: setup.py

package info (click to toggle)
django-otp-yubikey 1.0.0.post1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 152 kB
  • sloc: python: 445; makefile: 131
file content (35 lines) | stat: -rwxr-xr-x 1,092 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
33
34
35
#!/usr/bin/env python

from setuptools import find_packages, setup


setup(
    name='django-otp-yubikey',
    version='1.0.0.post1',
    description='A django-otp plugin that verifies YubiKey OTP tokens.',
    author='Peter Sagerson',
    author_email='psagers@ignorare.net',
    url='https://github.com/django-otp/django-otp-yubikey',
    project_urls={
        "Documentation": 'https://django-otp-yubikey.readthedocs.io/',
        "Source": 'https://github.com/django-otp/django-otp-yubikey',
    },
    license='BSD',
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3 :: Only",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Topic :: Security",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Framework :: Django",
    ],

    package_dir={'': 'src'},
    packages=find_packages(where='src'),
    install_requires=[
        'django-otp >= 1.0.0',
        'YubiOTP >= 0.2.2',
    ],
)