-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
39 lines (38 loc) · 1.35 KB
/
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
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='django-sirtrevor',
version='0.2.4',
packages=['sirtrevor'],
include_package_data=True,
license='MIT License',
description='A simple Django app that provides a model field and ' +
'corresponding widget based on the fantastic Sir Trevor ' +
'project',
long_description=open('README.rst', 'r').read(),
url='https://github.com/philippbosch/django-sirtrevor/',
author='Philipp Bosch',
author_email='hello@pb.io',
install_requires=['markdown2', 'django-appconf', 'django', 'six'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)