-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (28 loc) · 979 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
from setuptools import setup, find_packages
import sparkle
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.md')
setup(
name = "django-sparkle",
version = sparkle.__version__,
description = 'Django-sparkle is a Django application to make it easy to publish updates for your mac application using sparkle',
long_description = README,
url = 'http://github.com/Mobelux/django-sparkle',
author = 'Jason Emerick',
author_email = 'jemerick@gmail.com',
license = 'BSD',
zip_safe = False,
packages = find_packages(),
include_package_data = True,
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)