Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
django-sshkey
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
fcf4ec29
authored
Mar 26, 2014
by
Scott Duckworth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update for latest changes
parent
b48cf674
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
MANIFEST.in
+5
-5
setup.py
+4
-4
No files found.
MANIFEST.in
View file @
fcf4ec29
include LICENSE
include COPYING
include COPYING.LESSER
include README.md
include README.rst
include README.upgrading.rst
include lookup.py
include lookup.sh
include django-sshkey-lookup
include openssh-6.2p2-authorized-keys-command-stdin.diff
recursive-include django_sshkey/management *.py
include django-sshkey-lookup-all
include django-sshkey-lookup-by-username
include django-sshkey-lookup-by-fingerprint
recursive-include django_sshkey/migrations *.py
recursive-include django_sshkey/templates.example *
setup.py
View file @
fcf4ec29
...
...
@@ -29,12 +29,12 @@
import
os
from
setuptools
import
setup
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.
md
'
))
.
read
()
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.
rst
'
))
.
read
()
# allow setup.py to be run from any path
os
.
chdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
os
.
path
.
abspath
(
__file__
),
os
.
pardir
)))
exec
file
(
'django_sshkey/__init__.py'
)
exec
(
open
(
'django_sshkey/__init__.py'
)
.
read
()
)
setup
(
name
=
'django-sshkey'
,
...
...
@@ -60,17 +60,17 @@ setup(
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
,
],
scripts
=
[
'django-sshkey-lookup'
,
'django-sshkey-lookup-all'
,
'django-sshkey-lookup-by-username'
,
'django-sshkey-lookup-by-fingerprint'
,
'django-sshkey-lookup'
,
],
entry_points
=
{
'console_scripts'
:
[
'django-sshkey-pylookup = django_sshkey.util:lookup_main'
,
'django-sshkey-pylookup-all = django_sshkey.util:lookup_all_main'
,
'django-sshkey-pylookup-by-username = django_sshkey.util:lookup_by_username_main'
,
'django-sshkey-pylookup-by-fingerprint = django_sshkey.util:lookup_by_fingerprint_main'
,
'django-sshkey-pylookup = django_sshkey.util:lookup_main'
,
],
},
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment