-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.55 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="biggo-api",
version="0.2.0",
author="FUNMULA CO., LIMITED",
author_email="[email protected]",
description="client for accessing biggo api",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Funmula-Corp/biggo-api-python-client",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.9",
install_requires=[
'async_oauthlib',
'oauthlib',
'pydantic',
'requests_oauthlib',
],
keywords=['BigGo', 'Funmula', 'API', 'Open-Authentication', 'Social-Media', 'Social-Networking'],
platforms=['Linux', 'Windows', 'Mac'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Communications',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)