-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (32 loc) · 1.03 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
from setuptools import setup, find_packages
import subprocess
setup(
name="retaggr",
version="3.1.0",
url="https://github.com/noirscape/retaggr",
license="LGPLv3",
description="Reverse image searching utility for images.",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author="Valentijn 'noirscape' V.",
author_email="neko@catgirlsin.space",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
],
keywords="reverse image search booru",
project_urls={
"Source": "https://github.com/noirscape/retaggr",
"Tracker": "https://github.com/noirscape/retaggr/issues",
"Documentation": "https://retaggr.rtfd.org"
},
packages=find_packages('src'),
package_dir={'':'src',},
install_requires=[
"lxml",
"fake-useragent",
"requests",
"aiohttp"
]
)