forked from ogios/huggingchat-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.13 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
from setuptools import find_packages
from distutils.core import setup
from hugchat_api import __version__, __description__, __email__, __url__, __author__
setup(
name="hugchat_api",
version=__version__,
author=__author__,
author_email=__email__,
description=__description__,
url=__url__,
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"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",
],
exclude_package_data={
"bandwidth_reporter": ["*.json"],
},
install_requires=[
"requests",
],
extras_require={
"curl": ["pycurl"],
},
license="GNU General Public License v3.0",
long_description=open("./README.md", "r").read(),
long_description_content_type='text/markdown',
)