-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (45 loc) · 1.25 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
VERSION = __import__('editlive').VERSION
import os
from setuptools import setup, find_packages
try:
from setuptest import test
except ImportError:
from setuptools.command.test import test
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
'Django>=1.3,<=1.4.5',
'simplejson',
'django-dajaxice',
]
#tests_require = [
#'logbook',
#'nose',
#'unittest2',
#]
setup(
name='editlive',
version=VERSION,
author='Maxime Haineault',
author_email='[email protected]',
url='https://github.com/h3/django-editlive',
description = 'Live form editing for django (prototype application)',
long_description=read('README.rst'),
packages=find_packages(exclude=["tests"]),
zip_safe=False,
license='BSD',
install_requires=install_requires,
dependency_links=[],
#tests_require=tests_require,
#extras_require={'test': tests_require},
#test_suite='nose.collector',
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python',
],
)