-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (27 loc) · 908 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
31
import setuptools
setuptools.setup(
name="devrecargar",
version="0.1.4",
url="https://github.com/scottwoodall/django-devrecargar",
author="Scott Woodall",
author_email="[email protected]",
description="""
A Django app that automatically reloads your browser when a file
(py, html, js, css) changes.
""",
long_description=open('README.md').read(),
packages=setuptools.find_packages(),
license="MIT",
install_requires=['watchdog'],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)