-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
41 lines (39 loc) · 1011 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
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
with open("README.md", "r") as stream:
long_description = stream.read()
setup(
name = 'Amino.py',
version = '1.0.6',
url = 'https://github.com/Slimakoi/Amino.py',
download_url = 'https://github.com/Slimakoi/Amino.py/tarball/master',
license = 'GPLv3',
author = 'Slimakoi',
author_email = 'slimeytoficial@gmail.com',
description = 'Unofficial python wrapper for the Amino web api',
long_description = long_description,
long_description_content_type = 'text/markdown',
keywords = [
'aminoapps',
'amino-py',
'amino',
'amino-bot',
'narvii',
'api',
'python',
'python3',
'python3.x',
'slimakoi'
'unofficial'
],
install_requires = [
'setuptools',
'requests',
'six',
'websocket-client',
'ffmpeg-python'
],
setup_requires = [
'wheel'
],
packages = find_packages()
)