python-yubikey/setup.py

40 lines
978 B
Python
Raw Normal View History

2013-07-04 14:48:37 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2013-07-08 21:00:42 +00:00
from setuptools import setup
2013-07-04 14:48:37 +00:00
import os
import sys
2018-12-03 14:13:18 +00:00
version = '0.3.0'
2013-07-04 14:48:37 +00:00
if sys.argv[-1] == 'publish':
os.system("python setup.py sdist upload")
args = {'version': version}
print "You probably want to also tag the version now:"
print " git tag -a %(version)s -m 'version %(version)s'" % args
print " git push --tags"
sys.exit()
setup(
name='python-yubikey',
2013-07-08 21:00:42 +00:00
version=version,
2013-07-04 14:48:37 +00:00
url='http://github.com/fmartingr/python-yubikey',
license='GPLv2',
description='Simple Yubico API Wrappers',
author='Felipe Martin',
author_email='fmartingr@me.com',
py_modules=['yubikey'],
include_package_data=True,
zip_safe=False,
2018-12-03 14:13:18 +00:00
install_requires=[
"requests==2.20.1",
],
2013-07-04 14:48:37 +00:00
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
2013-07-08 21:00:42 +00:00
)