-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
45 lines (42 loc) · 1.46 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
from setuptools import setup
import os
DIRECTORY = os.path.dirname(__file__)
EXTRAS = {
"async": ["aiohttp"],
"fast_async": ["aiohttp", "cchardet", "aiodns"]
}
READ_ME = open(os.path.join(DIRECTORY, "README.rst")).read()
setup(
name = "akinator",
version = "1.1.1",
author = "Omkaar",
author_email = "omkaar.nerurkar@gmail.com",
packages = ["akinator", "akinator.async_aki"],
package_data = {
"akinator": ["VERSION.txt"]
},
url = "https://github.com/Infiniticity/akinator.py",
project_urls = {
"Documentation": "https://akinator.readthedocs.io",
"Source": "https://github.com/Infiniticity/akinator.py",
"Tracker": "https://github.com/Infiniticity/akinator.py/issues",
},
license = "MIT License",
description = "An API wrapper for Akinator.",
long_description = READ_ME,
long_description_content_type = "text/x-rst",
install_requires = ["requests"],
extras_require = EXTRAS,
python_requires = ">=3.8.0",
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Topic :: Utilities"
]
)