-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.2 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
BASE = os.path.dirname(__file__)
README_PATH = os.path.join(BASE, 'README.rst')
CHANGES_PATH = os.path.join(BASE, 'CHANGES.rst')
long_description = '\n\n'.join((
open(README_PATH).read(),
open(CHANGES_PATH).read(),
))
setup(
name='django-bootstrap-components',
version='3.0.2',
url='https://github.com/damoti/django-bootstrap-components',
license='BSD',
description='Bootstrap components and add-ons integrated with Django.',
long_description=long_description,
author='Lex Berezhny',
author_email='[email protected]',
keywords='django,bootstrap,dart,date,time,datetime,field,widget,form',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: User Interfaces',
],
packages=find_packages(exclude=('bootstrap.tests',)),
include_package_data=True
)