-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
executable file
·39 lines (36 loc) · 1.07 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
# -*- coding: utf-8 -*-
import codecs
import os
import setuptools
def local_file(file):
return codecs.open(
os.path.join(os.path.dirname(__file__), file), 'r', 'utf-8'
)
setuptools.setup(
name="people_also_ask",
version="1.1.0",
author="LE Van Tuan",
author_email="[email protected]",
packages=setuptools.find_packages(),
long_description=local_file('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/lagranges/people_also_ask",
classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Development Status :: 5 - Production/Stable",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Typing :: Typed",
],
install_requires=[
"beautifulsoup4",
"requests",
"jinja2",
"fake-useragent"
],
python_requires=">=3.6"
)