-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (60 loc) · 1.91 KB
/
setup.py
File metadata and controls
62 lines (60 loc) · 1.91 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
from codecs import open as codecs_open
setup(
name="dgupdater",
version="1.2.2",
author="DarkGlance",
author_email="darkglance.developer@gmail.com",
maintainer="DarkGlance",
maintainer_email="darkglance.developer@gmail.com",
description="A NO/LOW Code CLI based auto updation assistant tool for python applications",
long_description=codecs_open("README.md", "r", "utf-8").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Environment :: Console',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3.10',
install_requires=[
"click>=7.0",
"pymongo",
"platformdirs",
"tqdm",
"rich"
],
package_data={
'dgupdater': [
"bin/dgupdaterupdate_lin",
"bin/dgupdaterupdate_mac",
"bin/dgupdaterupdate_win.exe"
]
},
include_package_data=True,
entry_points={
'console_scripts': [
'dgupdater=dgupdater:cli',
],
},
project_urls = {
'Github': "https://github.com/Ashif4354/dgupdater"
},
keywords= [
'dgupdater', 'auto updater',
'cli tool', 'python', 'pyupdater',
'python application', 'auto updation',
'auto update', 'update',
'cli', 'command line interface',
'no code', 'low code', 'no code tool',
'mongodb', 'pymongo', 'click'
]
)