forked from paulablaza/discord-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 1.12 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='discord-oauth2',
packages=setuptools.find_packages(),
version='0.2',
license='MIT',
description="A python library that uses discord's api for easy authentication for your website.",
long_description=long_description,
long_description_content_type="text/markdown",
author='Paul Martin Ablaza',
author_email='[email protected]',
url='https://github.com/paulablaza/discord-oauth2',
install_requires=['requests'],
keywords=["discord auth", "discord oauht2", "oauth2"],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)