forked from tmandry/django-fresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (29 loc) · 945 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
32
33
34
35
36
37
from setuptools import setup
setup(
name='django-fresh',
version='1.0.5',
license='Simplified BSD',
install_requires = [
'Django',
'watchdog',
'beautifulsoup4',
],
description='Auto-refresh your browser when files in your project change.',
long_description=open('README.md').read(),
author='Isaac Bythewood',
author_email='[email protected]',
url='http://github.com/overshard/django-fresh',
download_url='http://github.com/overshard/django-fresh/downloads',
include_package_data=True,
packages=['fresh'],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)