forked from ubyssey/dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 676 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 676 Bytes
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
from setuptools import setup, find_packages
setup(name='dispatch',
version='0.5.31',
description='A publishing platform for modern newspapers',
url='https://github.com/ubyssey/dispatch',
author='Peter Siemens',
license='GPL',
packages=find_packages(),
scripts=['dispatch/bin/dispatch-admin'],
include_package_data=True,
install_requires=[
'django == 1.11',
'djangorestframework == 3.6.2',
'pillow',
'requests',
'jsonfield',
'docopt == 0.6.2'
],
extras_require={
'dev': [
'coverage'
]
},
zip_safe=False)