-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·88 lines (67 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Copyright 2018 miruka
# This file is part of lunafind, licensed under LGPLv3.
"lunafind setuptools file"
from setuptools import setup, find_packages
from lunafind import __about__
def get_readme():
with open("README.md", "r") as readme:
return readme.read()
setup(
name = __about__.__pkg_name__,
version = __about__.__version__,
author = __about__.__author__,
author_email = __about__.__email__,
license = __about__.__license__,
description = __about__.__doc__,
long_description = get_readme(),
long_description_content_type = "text/markdown",
python_requires = ">=3.6, <4",
install_requires = [
"appdirs",
"atomicfile",
"cached_property",
"colorama",
"dataclasses;python_version<'3.7'",
"docopt",
"fastnumbers",
"logzero",
"pendulum",
"requests",
"setuptools",
# Needed because simplejson converts namedtuples to dicts unlike json
"simplejson",
"urllib3",
"whratio>=3.1.1",
],
include_package_data = True,
package_data = {__about__.__pkg_name__: ["data/*"]},
packages = find_packages(),
entry_points = {
"console_scripts": [
f"{__about__.__pkg_name__}={__about__.__pkg_name__}.cli:main"
]
},
keywords = "lunakit lunasync booru danbooru api client image ugoira " \
"anime cli terminal scrap tag search filter order download",
url = "https://github.com/mirukan/lunafind",
classifiers=[
"Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules",
("License :: OSI Approved :: "
"GNU Lesser General Public License v3 or later (LGPLv3+)"),
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
]
)