-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
77 lines (70 loc) · 2.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
VERSION = __import__('coop').__version__
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'django-coop',
version = VERSION,
description = 'A basis for a cooperative organization directory, with people, organization, offers.',
packages = ['coop',
'coop.bin',
'coop.doc',
'coop.management',
'coop.management.commands',
'coop.article',
'coop.exchange',
'coop.link',
'coop.org',
'coop.mailing',
'coop.agenda',
'coop.agenda.conf',
'coop.person',
'coop.prefs',
'coop.project',
'coop.tag',
'coop.templatetags',
'coop.utils',
'coop.webid',
'coop.ui',
'coop.rdf',
],
include_package_data = True,
author = 'Cooperative Quinode',
author_email = '[email protected]',
license = 'BSD',
zip_safe = False,
install_requires = [#'south', 'django',
#'sorl-thumbnail==11.09',
#'django-extensions==0.8', # waiting for new Pypi version with our 12/09/12 commit
#'django-admin-tools==0.4.1', # for 1.4 : waiting for merging of https://bitbucket.org/psyton/django-admin-tools
#'django-haystack==1.2.6', # github dev version needed
#'djangoembed==0.1.1', # Pypi: bad version, we use: https://github.com/ericflo/django-oembed
],
long_description = open('README.rst').read(),
url = 'https://github.com/quinode/django-coop/',
download_url = 'https://github.com/quinode/django-coop/tarball/master',
scripts = [
'coop/bin/coop-admin.py',
'coop/bin/runinenv.sh'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Natural Language :: English',
'Natural Language :: French',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
)