-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (47 loc) · 3.12 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
from setuptools import setup, find_packages
import os
version = '1.4~dev'
base = os.path.dirname(__file__)
setup(name='kolekto',
version=version,
description='A really KISS movie catalog software',
long_description=open(os.path.join(base, 'README.rst')).read(),
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'],
keywords='kolekto movies',
author='Antoine Millet',
author_email='antoine@inaps.org',
url='https://github.com/NaPs/Kolekto',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
scripts=['bin/kolekto'],
entry_points={'kolekto.commands': ['gc = kolekto.commands.gc:Gc',
'link = kolekto.commands.link:Link',
'show = kolekto.commands.show:Show',
'rm = kolekto.commands.rm:Rm',
'refresh = kolekto.commands.refresh:Refresh',
'dump = kolekto.commands.dump:Dump',
'restore = kolekto.commands.restore:Restore',
'config = kolekto.commands.config:Config',
'watch = kolekto.commands.flags:Watch',
'fav = kolekto.commands.flags:Favorite',
'crap = kolekto.commands.flags:Crap',
'edit = kolekto.commands.edit:Edit',
'webexport = kolekto.commands.webexport:WebExport',
'list = kolekto.commands.list:List'],
'kolekto.commands.no_profile': ['init = kolekto.commands.init:Init'],
'kolekto.commands.movies': ['import = kolekto.commands.importer:ImportMovies',
'stats = kolekto.commands.stats:Stats',
'find-duplicates = kolekto.commands.find_duplicates:FindDuplicates'],
'kolekto.commands.tvseries': ['import = kolekto.commands.importer:ImportTvSeries'],
'kolekto.datasources': ['tmdb = kolekto.datasources.tmdb:TmdbDatasource',
'tmdb_tv = kolekto.datasources.tmdb:TmdbTVSeriesDatasource',
'tmdb_proxy = kolekto.datasources.tmdb:TmdbProxyDatasource',
'mediainfos = kolekto.datasources.mediainfos:MediainfosDatasource',
'rewrite = kolekto.datasources.rewrite:RewriteDatasource'],
'kolekto.profiles': ['movies = kolekto.profiles.movies:Movies',
'tvseries = kolekto.profiles.series:TVSeries']},
install_requires=['confiture', 'kaa-metadata', 'progressbar', 'requests', 'lxml'])