forked from munhitsu/django-dowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (35 loc) · 1.34 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
34
35
36
37
38
39
40
import os
from setuptools import setup, find_packages
ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
VERSION = '0.1.3-python3'
setup(
name="django-dowser",
version=VERSION,
author="Mateusz Lapsa-Malawski",
author_email="[email protected]",
url="http://github.com/munhitsu/django-dowser",
description="Django fork of amazing memory leaks tracking application for python wsgi - the Dowser",
long_description=open("README.markdown").read(),
keywords=["django","dowser", "debug", "memory leak"],
license = open("LICENSE").read(),
download_url="http://pypi.python.org/packages/source/d/django-dowser/django-dowser-%s.tar.gz" % VERSION,
platforms="",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
],
packages = ['django_dowser'],
package_data = {
'django_dowser': ['templates/django_dowser/*.html','templates/django_dowser/*.css'],
},
include_package_data = True,
zip_safe = False, # because we're including media that Django needs
)