-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (41 loc) · 1.26 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
from pathlib import Path
from configparser import ConfigParser
from setuptools import setup, find_packages
config = ConfigParser()
config.read('setup.cfg')
setup(
name="pymino",
license="MIT",
author="forevercynical",
author_email="me@cynical.gg",
description="Easily create a bot for Amino Apps using a modern easy to use synchronous library.",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/forevercynical/pymino",
version = config.get('metadata', 'version'),
packages=find_packages(),
install_requires=[
"requests==2.31.0",
"colorama==0.4.6",
"websocket-client==1.6.1",
"diskcache==5.6.1",
"aiohttp==3.8.4"
],
keywords=[
"amino",
"pymino",
"narvii",
"amino-api",
"narvii-bots",
"aminoapps",
"amino-bot",
"amino-bots"
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8"
)