-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 694 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-hashsignal',
version='.'.join(map(str, __import__('hashsignal').__version__)),
author='David Gouldin, Jeremy Dunck',
author_email='david@gould.in, jdunck@gmail.com',
url='http://github.com/dgouldin/django-hashsignal',
description = 'Tools for making a hash-signaling powered Django site.',
packages=find_packages(),
zip_safe=False,
install_requires=[],
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)