-
Notifications
You must be signed in to change notification settings - Fork 279
/
setup.py
executable file
·48 lines (43 loc) · 1.24 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
43
44
45
46
47
48
#!/usr/bin/env python3
from codecs import open
from iquery import __version__
from setuptools import setup
def read(f):
return open(f, encoding='utf-8').read()
setup(
name='iquery',
version=__version__,
description='Various information query via command line.',
long_description=read('README.rst') + '\n\n' + read('HISTORY.rst'),
author='protream',
author_email='[email protected]',
url='https://github.com/protream/iquery',
packages=[
'iquery'
],
py_modules=['run'],
include_package_data=True,
platforms='any',
install_requires=[
'prettytable',
'requests',
'bs4',
'pyquery',
],
entry_points={
'console_scripts': ['iquery=run:cli']
},
license='MIT',
zip_safe=False,
classifiers=[
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython'
]
)