-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
60 lines (56 loc) · 1.45 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from re import search
from setuptools import setup, find_packages
with open("README.md", "r") as stream:
long_description = stream.read()
with open(f'aminoed/__init__.py') as fp:
__version__ = search("'" + (r"\d*." * 5) + "'",
fp.read()).group().replace("'", '')
setup(
name="Amino.ed",
version=__version__,
url="https://github.com/Alert-Aigul/Amino.ed",
download_url="https://github.com/Alert-Aigul/Amino.ed/archive/refs/heads/main.zip",
license="MIT",
author="Alert Aigul",
author_email="alertaigul@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",
"amino.py",
"amino.ed",
"amino-ed",
"narvii",
"api",
"python",
"python3",
"python3.x",
"official",
"alert",
"fix",
"ed"
],
install_requires=[
"setuptools",
"requests",
"aiohttp",
"pydantic",
"aiofile",
"eventemitter",
"json_minify"
],
setup_requires=[
"wheel"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.6",
packages=find_packages()
)