forked from ading2210/poe-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 990 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
32
33
34
35
36
37
38
39
import setuptools, glob
from pathlib import Path
#note: build this package with the following command:
#pip wheel --no-deps -w dist .
base_path = Path(__file__).parent
long_description = (base_path / "README.md").read_text()
setuptools.setup(
name="poe-api",
version="0.2.4",
author="ading2210",
license="GPLv3",
description="A reverse engineered API wrapper for Quora's Poe",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["poe_graphql"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent"
],
python_requires=">=3.7",
package_dir={
"": "poe-api/src"
},
package_data={
"poe_graphql": ["*.graphql"]
},
py_modules=["poe"],
include_package_data=True,
install_requires=[
"websocket-client",
"requests[socks]",
"python-socks"
],
url="https://github.com/ading2210/poe-api"
)