forked from PetterKraabol/Twitch-Chat-Downloader
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
43 lines (33 loc) · 992 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r') as fi:
long_description = fi.read()
setup(
name='tdh-tcd',
version='2.5.4',
author='Dmitry Karikh',
author_email='[email protected]',
description='Twitch Chat Downloader',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/TheDrHax/Twitch-Chat-Downloader',
install_requires=[
'requests',
'progressbar2',
'iso8601'
],
packages=find_packages(),
package_data={'tcd': ['example.settings.json']},
include_package_data=True,
entry_points='''
[console_scripts]
tcd=tcd:main
''',
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Utilities'
]
)