Skip to content

Commit

Permalink
pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio committed May 27, 2023
1 parent ccdd3d2 commit 73a0142
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from setuptools import find_packages
from setuptools import setup

setup(
name="OpenAIAuth",
version="1.0.0",
license="MIT",
author="pengzhile",
author_email="<Unknown>",
description="OpenAI Authentication Reverse Engineered",
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=["OpenAIAuth"],
url="https://github.com/acheong08/OpenAIAuth",
project_urls={"Bug Report": "https://github.com/acheong08/OpenAIAuth/issues/new"},
install_requires=[
"requests",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"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",
],
long_description=open("README.md", "rt", encoding="utf-8").read(),
long_description_content_type="text/markdown",
)

0 comments on commit 73a0142

Please sign in to comment.