-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (35 loc) · 1.31 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
from setuptools import setup, find_packages
import codecs
import os
#To create package: python setup.py sdist bdist_wheel
#To upload package: twine upload dist/*
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), 'r', encoding="utf-8") as fh:
long_description = "\n" + fh.read()
VERSION = '1.7.1'
DESCRIPTION = 'A python script that syncs user watchlist and ratings for Movies, TV Shows and Episodes both ways between Trakt and TMDB.'
# Setting up
setup(
name="TMDBTraktSyncer",
version=VERSION,
author="RileyXX",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/RileyXX/TMDB-Trakt-Syncer",
packages=find_packages(),
install_requires=['requests'],
keywords=['python', 'video', 'trakt', 'tmdb', 'ratings', 'sync', 'movies', 'tv shows'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'TMDBTraktSyncer = TMDBTraktSyncer.TMDBTraktSyncer:main'
]
},
python_requires='>=3.6'
)