-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 697 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup,find_packages
setup(
name = 'movieMerlin',
packages=find_packages(),
version = '0.2',
description = 'A command line tool that finds you movies',
author = 'Siddharth Verma',
author_email = 'siddharthv93@gmail.com',
url = 'https://github.com/padfoot27/merlin',
download_url = 'https://github.com/padfoot27/merlin/tarball/0.2',
include_package_data=True,
license = 'MIT License',
install_requires = [
'Click',
'tmdbsimple',
],
entry_points = '''
[console_scripts]
merlin=package.scripts.merlin:discover
''',
)