-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·52 lines (49 loc) · 1.37 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
from setuptools import setup
peavy = __import__('peavy')
with open('README.rst') as file:
long_description = file.read()
setup(
author='Fairview Computing LLC',
author_email='john@fairviewcomputing.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Logging',
],
description=peavy.__doc__,
long_description=long_description,
download_url='http://github.com/fairview/django-peavy/downloads',
install_requires=[
'Django>=1.3',
'South>=0.7.6'
],
license="MIT License",
name='django-peavy',
packages=[
'peavy',
'peavy.migrations',
'peavy.templatetags',
],
package_data={
'peavy': [
'README.rst',
'LICENSE.txt',
'templates/*/*.html',
'static/*/*/*',
],
},
tests_require=[
'Django>=1.3',
'South>=0.7.6',
'psycopg2>=2.4.3', # 2.4.2 causes trouble with Django 1.3(.1) unit tests
],
test_suite='tests.main',
url='http://github.com/fairview/django-peavy',
version=peavy.get_version(),
zip_safe=True,
)