-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
49 lines (44 loc) · 1.51 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'readme.md'), encoding='utf-8') as f:
readme = f.read()
requirements = ['requests==2.27.1', 'twitch-python==0.0.20', 'pytz==2022.1', 'python-dateutil==2.8.2']
test_requirements = ['twine==4.0.0', 'wheel==0.37.1']
setup_requirements = ['pipenv==2022.4.30', 'setuptools==62.1.0']
setup(
author='Petter Kraabøl',
author_email='petter.zarlach@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
entry_points=
'''
[console_scripts]
tcd=tcd:main
''',
description='Twitch Chat Downloader',
install_requires=requirements,
license='MIT',
long_description=readme,
long_description_content_type='text/markdown',
include_package_data=True,
keywords='Twitch',
name='tcd',
packages=find_packages(),
python_requires=">=3.8",
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/PetterKraabol/Twitch-Chat-Downloader',
version='3.2.2',
zip_safe=True,
)