forked from SheepDogInc/ssheepdog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 793 Bytes
/
setup.py
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
from setuptools import setup, find_packages
description = 'django-ssheepdog is a public ssh key management tool for teams of programmers'
long_desc = open('README.rst').read()
setup(
name='django-ssheepdog',
version='0.2.0',
url='https://github.com/SheepDogInc/django-ssheepdog',
install_requires=[
'django-celery',
'django-kombu',
'south',
'ssh'
],
description=description,
long_description=long_desc,
include_package_data=True,
author='SheepDogInc',
author_email='[email protected]',
packages=find_packages(),
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development'
]
)