-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 744 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 744 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
27
28
29
30
31
32
33
import sys
import subprocess
from setuptools import setup
import distutils.core
setup(
name = "notos",
version = "0.1",
package_dir = {
'': 'src',
},
packages = [
'notos',
'notos.migrations',
],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = [
'gcm-client>=0.1.3',
'django-celery>=3.0.17',
'Django>=1.5.1',
'django-json-field>=0.5.4',
],
author = "Sigmapoint",
author_email = "karol.majta@sigmapoint.co",
description = "Generic aproach to push messaging with django-rest-framework",
license = "MIT",
url = "http://sigmapoint.co",
)