-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.05 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='suggestions',
version='1.0.1.dev1',
author=u'DREIDEV',
author_email='[email protected]',
url='https://github.com/dreidev/Comments',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='suggestions suggestion development',
description='Associates suggestions functionality with any given model',
zip_safe=False,
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
)