Skip to content

Commit

Permalink
Add classifiers to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzsochi committed Dec 18, 2012
1 parent 43eb357 commit 3a08cb6
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
from setuptools import setup

setup(name='ssh_authorizer',
description='Manager for remote ~/.ssh/authorized_keys.',
author='Alexander Zelenyak aka ZZZ',
author_email='zzz.sochi@gmail.com',
url='http://github.com/zzzsochi/ssh_authorized/',
version='1.0',
packages=['ssh_authorizer'],
scripts=['scripts/ssh-authorizer'],
install_requires=['sh'],
setup(
name='ssh_authorizer',
description='Manager for remote ~/.ssh/authorized_keys.',
author='Alexander Zelenyak aka ZZZ',
author_email='zzz.sochi@gmail.com',
url='http://github.com/zzzsochi/ssh_authorized/',
version='1.0',
packages=['ssh_authorizer'],
scripts=['scripts/ssh-authorizer'],
install_requires=['sh'],
classifiers=[
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
)

0 comments on commit 3a08cb6

Please sign in to comment.