-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
58 lines (51 loc) · 2.03 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
56
57
58
import os
from setuptools import find_packages, setup
import worldometer
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), mode='r', encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(
name='worldometer',
version=worldometer.__version__,
description='Get live, population, geography, projected, and historical data from around the world.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT License',
author=worldometer.__author__,
author_email='[email protected]',
url='https://github.com/matheusfelipeog/worldometer',
packages=find_packages(),
install_requires=[
'requests-html',
'pandas',
'html5lib'
],
zip_safe=False,
python_requires='>=3.8',
project_urls={
"Bug Tracker": "https://github.com/matheusfelipeog/worldometer/issues",
"Documentation": "https://worldometer.readthedocs.io",
"Source Code": "https://github.com/matheusfelipeog/worldometer",
},
keywords=[
'worldometer', 'worldometers', 'worldometer-api', 'worldometer-scraping',
'world-data', 'world-metrics', 'metrics', 'real-time-data', 'real-time-metrics',
'api', 'scraping', 'requests-html'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)