Skip to content

Commit 94dfcd9

Browse files
committed
prepared things for pypi
1 parent 5aad5b2 commit 94dfcd9

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
File renamed without changes.

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from setuptools import setup
2+
3+
with open("README.md", "r") as file:
4+
long_description = file.read()
5+
6+
setup(
7+
name='discordoauth2',
8+
description='Use Discord\'s OAuth2 effortlessly! Turns the auth code to a access token and the access token into scope infomation. ',
9+
version="1.0.0",
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
12+
license='MIT',
13+
python_requires='>=3.8',
14+
author="TreeBen77",
15+
packages=[
16+
'discordoauth2'
17+
],
18+
url='https://github.com/TreeBen77/discordoauth2',
19+
keywords='flask, oauth2, discord, discord-api',
20+
install_requires=[
21+
'requests'
22+
]
23+
)

0 commit comments

Comments
 (0)