forked from leyguistar/Amino.py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 967 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
from setuptools import setup, find_packages
with open("README.md", "r") as stream:
long_description = stream.read()
setup(
name = 'Amino.py',
version = '1.2.8',
url = 'https://github.com/Slimakoi/Amino.py',
download_url = 'https://github.com/Slimakoi/Amino.py/tarball/master',
license = 'MIT',
author = 'Slimakoi',
author_email = 'slimeytoficial@gmail.com',
description = 'A library to create Amino bots.',
long_description = long_description,
long_description_content_type = 'text/markdown',
keywords = [
'aminoapps',
'amino-py',
'amino',
'amino-bot',
'narvii',
'api',
'python',
'python3',
'python3.x',
'slimakoi',
'official'
],
install_requires = [
'setuptools',
'requests',
'six',
'websocket-client'
],
setup_requires = [
'wheel'
],
packages = find_packages()
)