-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 1019 Bytes
/
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
from setuptools import setup, find_packages
import codecs
import os
VERSION = '0.0.5'
DESCRIPTION = 'A simple discord rank card written in python.'
LONG_DESCRIPTION = open("README.md").read()
# Setting up
setup(
name="Python-discord-rankcard",
version=VERSION,
author="yangman946",
author_email="clarenceyang284@gmail.com",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION ,
url="https://github.com/yangman946/Python-discord-rankcard",
packages=find_packages(),
install_requires=['Pillow', 'requests'],
keywords=['python', 'pillow', 'discord', 'discord-py'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)