forked from showment/granitepy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 813 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (23 loc) · 813 Bytes
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = "granitepy",
packages = ['andesite'],
version = "0.0.8a",
description = "A library for the lavalink like audio provider called andesite",
long_description=long_description,
long_description_content_type="text/markdown",
author = "twitch#7443",
author_email = "twitch@trenchbot.xyz",
url = "https://github.com/twitch0001/granitepy",
keywords = ['andesite'],
install_requires=['websockets>=6.0,<7.0', 'aiohttp'],
classifiers = [
"Framework :: AsyncIO",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet"
]
)