-
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) · 999 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 999 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
#-*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="django-pushall",
version='1.0.2b1',
packages=find_packages(),
author="Forkhammer",
author_email="forkhammer@gmail.com",
maintainer="Forkhammer",
maintainer_email="forkhammer@gmail.com",
url="https://github.com/forkhammer/django-pushall",
license='MIT License: https://github.com/forkhammer/django-pushall/blob/master/LICENSE',
description="Django app for Pushall notice system",
long_description="*django-pushall* - is an application to support Push-notification system for PushAll framework Django.",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=["Django>=1.8", 'requests'],
)