-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 984 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
32
33
from setuptools import setup
from rsap.__init__ import __version__
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setup(
name="rsap",
version=__version__,
author="Hunter",
description="A simple wrapper for the Random Stuff API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Hunter2807/RSAP",
classifiers=[
"Natural Language :: English",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=[
"discord.py",
"aiohttp",
"requests"
],
packages=["rsap"],
python_requires='>3.6'
)