-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 1.04 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
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "readme.md").read_text()
setup(
name='mostats',
version='1.0.19',
author="Hendri Tjipto",
url="https://github.com/pix3lize/mostats",
python_requires='>=3.10.7',
description="Get the MongoDB database statistic to a local excel file",
long_description=long_description,
long_description_content_type='text/markdown',
packages=['mostats'],
install_requires=['pymongo>=4.4.1', 'pandas>=2.0.3', 'argparse',
'openpyxl>=3.1.2', 'xlsxwriter>=3.1.2', 'numpy>=1.25.1'],
entry_points={
'console_scripts': [
'mostats=mostats.getCluster:main'
]
},
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)