-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
38 lines (31 loc) · 1.15 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
"""Setup script for django-emoticons"""
import os
from setuptools import setup
from setuptools import find_packages
import emoticons
setup(
name='django-emoticons',
version=emoticons.__version__,
description=('A usefull and incredible Django application '
'that allow you to use emoticons in your templates :)'),
long_description=open(os.path.join('README.rst')).read(),
keywords='django, emoticons, smiley',
author=emoticons.__author__,
author_email=emoticons.__email__,
url=emoticons.__url__,
license=emoticons.__license__,
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['emoticons.demo']),
classifiers=[
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires=['beautifulsoup4']
)