-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (38 loc) · 1.14 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
39
40
41
42
#!/usr/bin/env python
try:
from setuptools import setup
extra = dict(include_package_data=True)
except ImportError:
from distutils.core import setup
extra = {}
from qav import __version__
long_description = '''
qav is a Python library for console-based question and answering, with the
ability to validate input.
'''
setup(
name='qav',
version=__version__,
author='Derek Yarnell',
author_email='[email protected]',
packages=['qav'],
install_requires=[
'netaddr',
],
url='https://github.com/UMIACS/qav',
license='LGPL v2.1',
description='Question Answer Validation',
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
**extra
)