-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 746 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 746 Bytes
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
from setuptools import setup, find_packages
version = '0.2'
setup(name='wheelcms_comments',
version=version,
description="WheelCMS comments package",
long_description=open("README.md").read(),
classifiers=[
"Programming Language :: Python",
],
keywords='',
author='Ivo van der Wijk',
author_email='wheelcms@in.m3r.nl',
url='http://github.com/wheelcms/wheelcms_comments',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pytest',
'django-simple-captcha'
],
entry_points={
},
)