-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 864 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 864 Bytes
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
from setuptools import find_namespace_packages
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="hugchatasync",
version="0.5.3",
author="AsDeep",
author_email="trplkv@yandex.ru",
license="GNU Affero General Public License v3.0",
description="Async-ready implementation of Soulter's hugchat",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=["hugchatasync"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
install_requires=[
"httpx",
],
packages=find_namespace_packages("src"),
python_requires=">=3.6"
)