-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
35 lines (34 loc) · 1.22 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
from setuptools import setup
setup(name='moviemon',
version='1.0.11',
description='Everything about your movies within the command line.',
url='https://github.com/iCHAIT/moviemon',
author='Chaitanya Gupta',
author_email='cgupta319@gmail.com',
license='MIT',
packages=['moviemon'],
entry_points={
'console_scripts': ['moviemon=moviemon:main'],
},
install_requires=[
'guessit<2',
'terminaltables',
'docopt',
'tqdm',
'colorama'
],
keywords=['movies', 'CLI', 'movies-within-CLI', 'python'],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Version Control',
],)