-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1006 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pyantidot
setup(
name='python-antidot',
version='0.2.6',
packages=find_packages(),
install_requires=[
'nose',
'requests',
'Werkzeug',
],
author='Algoo',
author_email="[email protected]",
description='Python antidot search engine implementation, see '
'https://github.com/algoo/python-antidot.',
long_description='Python antidot search engine implementation, see '
'https://github.com/algoo/python-antidot.',
include_package_data=True,
url='https://github.com/algoo/python-antidot',
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: GNU Affero General Public "
"License v3 or later (AGPLv3+)"
]
)