File: setup.py

package info (click to toggle)
python-yubico 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 288 kB
  • ctags: 434
  • sloc: python: 1,893; ansic: 128; sh: 67; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 515 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup, find_packages

setup(name		= 'python-yubico',
      version		= '1.1.0',
      description	= 'Python code for talking to Yubico\'s YubiKeys',
      author		= 'Fredrik Thulin',
      author_email	= 'fredrik@yubico.com',
      url		= 'http://www.yubico.com/',
      license		= 'BSD',
      packages		= ['yubico'],
      package_dir	= {'': 'Lib'},
      tests_require	= "nose >=0.10.0b1",
      test_suite	= "nose.collector",
     )