-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (42 loc) · 1.55 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
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
import sys
catalogs = __import__('catalogs')
README_FILE = 'README.rst'
__author__ = 'Razzhivin Alexander'
__email__ = '[email protected]'
try:
long_description = open(README_FILE).read()
except IOError, err:
sys.stderr.write("[ERROR] Cannot find file specified as "
"``long_description`` (%s)\n" % README_FILE)
sys.exit(1)
setup(name='django-catalogs',
version=catalogs.__version__,
description='Django based simple catalog structure for site',
long_description=long_description,
zip_safe=False,
author='Razzhivin Alexander',
author_email='[email protected]',
url='https://github.com/RANUX/django-catalogs',
download_url='https://github.com/RANUX/django-catalogs/downloads',
packages = find_packages(exclude=['test_project',]),
include_package_data=True,
install_requires = [
'django==1.3',
'easy-thumbnails',
'django-model-utils ',
### Required to build documentation
# 'sphinx',
],
test_suite='runtests.runtests',
tests_require=['nose', 'django-nose', 'coverage'],
classifiers = ['Development Status :: 1 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)