-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (24 loc) · 955 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# Dynamically calculate the version based on adgeletti.VERSION
version_tuple = __import__('adgeletti').VERSION
version = '.'.join([str(v) for v in version_tuple])
setup(
name = 'adgeletti',
description = ('A truely plugable Django app, providing easy integration '
'of Google GPT ad displaying into your website.'),
version = version,
author = 'Jeff Ober and Michael Angeletti',
author_email = 'Jeff.Ober and Michael.Angeletti @ CMG Digital [dot] com',
url = 'http://github.com/orokusaki/adgeletti/',
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
packages=find_packages(),
)