-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.38 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.38 KB
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
import setuptools
with open('README.md') as f:
readme = f.read()
PACKAGES = [
'vk2telegraph',
'vk2telegraph.vk',
'vk2telegraph.vk.backends',
'vk2telegraph.vk.backends.requests_html_backend',
'vk2telegraph.tgph',
'vk2telegraph.tgph.backends'
]
setuptools.setup(
name='vk2telegraph',
version='0.3',
author='Kristaller',
description='This script translate VK articles to Telegra.ph posts',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/kristaller486/vk2telegraph',
packages=PACKAGES,
keywords=['vk', 'telegraph', 'vk posts', 'telegra.ph'],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Internet',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: PyPy',
],
install_requires=[
'fake-useragent',
'fire',
'telegraph',
'requests',
'beautifulsoup4'
]
)