-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
26 lines (24 loc) · 827 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
from setuptools import find_packages, setup
with open("README.md", "r") as file:
long_des = file.read()
setup(
name="disthon",
packages=find_packages(),
install_requires=["aiohttp", "yarl", "pydantic", "arrow"],
description="An API wrapper for the discord API written in python",
version="0.0.1",
long_description=long_des,
long_description_content_type="text/markdown",
license="MIT",
author="Arshia",
author_email="[email protected]",
url="https://github.com/AA1999/Disthon",
keywords=["API", "discord"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
],
)