-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (52 loc) · 1.7 KB
/
setup.py
File metadata and controls
64 lines (52 loc) · 1.7 KB
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
# -*- coding: utf-8 -*-
import os
import sys
project_dir = os.path.dirname(__file__)
sys.path.append(os.path.join(project_dir, 'src'))
import django_bootstrap_carousel
version = django_bootstrap_carousel.version
install_requires = [
'django',
'south',
'django_nose',
'pillow',
]
setup_requires = [
]
dependency_links = [
]
long_description = '''
django-bootstrap-carousel implement the carousel component for
bootstrap in Django. See the project page for more information:
https://github.com/cdchen/django-bootstrap-carousel
'''
from setuptools import setup, find_packages
setup(
name='django_bootstrap_carousel',
version=version,
description='Django Bootstrap Carousel Component',
long_description=long_description,
author='cdchen',
author_email='cdchen@nicestudio.com.tw',
url='https://github.com/cdchen/django-bootstrap-carousel',
download_url='https://github.com/cdchen/django-bootstrap-carousel/tarball/master',
license='MIT License',
packages=find_packages('src', exclude=['docs', 'tests']),
package_dir={
'': 'src'
},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
setup_requires=setup_requires,
dependency_links=dependency_links,
classifiers=['Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)