-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (51 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
module_data = {}
with open(path.join(here, "showtime", "__init__.py")) as fp:
exec(fp.read(), module_data)
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='showtime-cli',
version=module_data['__version__'],
packages=[
'showtime',
],
author='Evgeniy Vasilev',
author_email='[email protected]',
license='MIT',
description='Command line show tracker using the TVMaze public API',
long_description=long_description,
long_description_content_type='text/markdown',
url=module_data['__url__'],
keywords='tv commandline application show tvmaze',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
],
install_requires=[
'cmd2==2.5.7',
'urllib3==2.2.3',
'ratelimit==2.2.1',
'tinydb==4.8.2',
'terminaltables==3.1.10',
'python-dateutil==2.9.0.post0',
'typing-extensions==4.12.2',
],
extras_require={
'test': ['tox'],
},
entry_points={
'console_scripts':
[
'showtime = showtime.command:main'
]
}
)