|
5 | 5 |
|
6 | 6 | setuptools.setup( |
7 | 7 | name="TikTokAPI-Python", |
| 8 | + packages=setuptools.find_packages(), |
8 | 9 | version="0.0.1", |
9 | 10 | license='MIT', |
10 | 11 | author="Avilash Kumar", |
11 | | - author_email="avilash.k@greyorange.sg", |
| 12 | + author_email="avilashkumar4@gmail.com", |
12 | 13 | description="Unofficial TikTok API wrapper in Python", |
13 | 14 | long_description=long_description, |
14 | 15 | long_description_content_type="text/markdown", |
15 | 16 | url="https://github.com/avilash/TikTokAPI", |
16 | 17 | download_url='https://github.com/avilash/TikTokAPI/tarball/master', |
17 | | - keywords=['tiktok', 'python3', 'api', 'unofficial', 'tiktok-api', 'tiktok api'], |
| 18 | + keywords=['tiktok', 'python', 'api', 'tiktok-api', 'tiktok api'], |
18 | 19 | install_requires=[ |
19 | 20 | 'requests', |
20 | 21 | 'pyppeteer', |
21 | 22 | "pyppeteer_stealth" |
22 | 23 | ], |
23 | | - packages=setuptools.find_packages(), |
24 | 24 | classifiers=[ |
25 | | - "Programming Language :: Python :: 2", |
| 25 | + "Programming Language :: Python :: 3", |
26 | 26 | "License :: OSI Approved :: MIT License", |
27 | 27 | "Operating System :: OS Independent", |
| 28 | + 'Intended Audience :: Developers', |
| 29 | + 'Topic :: Software Development :: Build Tools', |
28 | 30 | ], |
29 | 31 | include_package_data=True |
30 | 32 | ) |
0 commit comments