forked from soravux/idasc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 960 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 960 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='',
version="0.1",
description='Image Downloader',
long_description='Generates an image database using a keyword.',
author='Yannick Hold',
author_email='yannickhold@gmail.com',
url='',
download_url='',
install_requires=open('requirements.txt', 'r').readlines(),
py_modules=[],
packages=[],
platforms=['any'],
keywords=[
'web scraper',
'image database',
'image downloader',
],
license='LGPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public '
'License (LGPL)',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics :: Capture',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Recognition',
],
)