-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (28 loc) · 960 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
29
30
from setuptools import setup
import heythere
setup(
name="django-heythere",
version=heythere.__version__,
description="Convient notifications for users.",
long_description="",
keywords="django, notifications",
author=("Kenneth Love <[email protected]>, "
"Chris Jones <[email protected]>"),
author_email="[email protected]",
url="https://github.com/brack3t/django-heythere/",
license="BSD",
packages=["heythere"],
zip_safe=False,
install_requires=[],
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3"
],
)