-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·59 lines (42 loc) · 1.58 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
# Copyright 2018 miruka
# This file is part of pydecensooru, licensed under LGPLv3.
from setuptools import setup, find_packages
from pydecensooru 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",
"requests",
],
include_package_data = True,
packages = find_packages(),
keywords = "better booru danbooru gold member bypass decensooru " \
"uncensor banned artist lunakit lunafind",
url = "https://github.com/mirukan/pydecensooru",
classifiers=[
"Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet",
("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",
]
)