-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.52 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
49
50
51
from setuptools import setup, find_packages
def readme():
with open(r"README.md") as f:
README = f.read()
return README
def requirements():
with open("requirements.txt", "r") as f:
requirements = f.read()
return requirements
setup(
name="pyquora",
packages=find_packages(),
version="0.4.4",
license="MIT",
description="""Fetch profiles and data from Quora.""",
author="Shubhendra Kushwaha",
author_email="[email protected]",
url="https://github.com/TheShubhendra/pyquora",
keywords=[
"scraper",
"quora",
],
install_requires=requirements(),
include_package_data=True,
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"License :: Free For Educational Use",
"License :: Free For Home Use",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.7",
)