-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
57 lines (43 loc) · 1.52 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
__author__ = 'tusharmakkar08'
from pip.req import parse_requirements
from setuptools import setup, find_packages
install_reqs = parse_requirements('requirements.txt', session=False)
install_requirement = [str(ir.req) for ir in install_reqs]
setup(
# Application name:
name="imagyy",
# Version number:
version="1.0.3",
# Application author details:
author="Tushar Makkar",
author_email="tusharmakkar08@gmail.com",
# Packages
packages=['image_search', 'image_search.search_files'],
package_data={'': ['*.md']},
license='MIT',
platforms=['any'],
# Details
url="https://github.com/tusharmakkar08/Imagyy/",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
# license="LICENSE.txt",
description="Fetches public photos of different social networking platforms",
long_description=open("README.rst").read(),
entry_points={
'console_scripts': [
'imagyy = image_search.main_search:command_line_runner',
]
},
# Dependent packages (distributions)
install_requires=install_requirement,
)