-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·77 lines (56 loc) · 2.1 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
# Copyright 2018 miruka
# This file is part of lunasync, licensed under LGPLv3.
"lunasync setuptools file"
from setuptools import setup, find_packages
from lunasync 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",
"docopt",
"lunafind>=0.5.4,<0.6.0",
"setuptools",
],
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 lunafind booru danbooru api image ugoira anime cli " \
"terminal scrap saved tag search filter download sync " \
"subscription cron",
url = "https://github.com/mirukan/lunasync",
classifiers=[
"Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
("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",
]
)