-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 1.31 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
import itertools
from pathlib import Path
import tomli
from setuptools import find_packages, setup
with open("pyproject.toml", "rb") as f:
pyproject = tomli.load(f)
setup(
name="async-openai",
description=pyproject["project"]["description"],
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
author="kajdev",
author_email="[email protected]",
url="https://github.com/kajdev/async-openai",
version=pyproject["project"]["version"],
packages=find_packages(),
include_package_data=True,
python_requires=">=3.10",
install_requires=(Path(__file__).parent / "requirements.txt").read_text().splitlines(),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Framework :: aiohttp",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
"Repo": "https://github.com/kajdev/async-openai",
}
)