forked from seawolff/django-etherpad-lite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 1 KB
/
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
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name='etherpadlite',
version='0.1',
author='Sofian Benaissa',
author_email='[email protected]',
url='https://github.com/sfyn/django-etherpad-lite',
description='Etherpad-lite integration for Django',
packages=find_packages(),
zip_safe=False,
install_requires=[
'Django',
'PyEtherpadLite',
],
dependency_links=[
# The original PyEtherpadLite at
# https://github.com/devjones/PyEtherpadLite is currently
# not installable by either pip or setup.py, thus a fork is used until
# further notice
'https://github.com/rassie/PyEtherpadLite/zipball/master#egg' +
'=PyEtherpadLite',
],
license='GPL3',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
],
)