-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (37 loc) · 879 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
requirements = [
"requests",
"websocket-client==1.3.1",
"setuptools",
"json_minify",
"six",
"aiohttp",
"websockets"
]
with open("README.md", "r") as stream:
long_description = stream.read()
setup(
name="amino.ae",
license="MIT",
author="Reaper",
version="1.0.0.0",
author_email="[email protected]",
description="JOIN DISCORD FOR SUPPORT https://discord.gg/NnKWCtY2F8",
url="https://github.com/BlackReaper33/amino.ae",
packages=find_packages(),
long_description=long_description,
install_requires=requirements,
keywords=[
'aminoapps',
'amino.fix',
'amino',
'amino-bot',
'narvii',
'api',
'python',
'python3',
'python3.x',
'minori'
],
python_requires='>=3.6',
)