-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1014 Bytes
/
Copy pathsetup.py
File metadata and controls
38 lines (37 loc) · 1014 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'git_image_commiter',
version = '1.0.0',
description = 'Git Image Commiter',
author = 'Revi1337',
author_email = 'david122123@gmail.com',
url = '',
download_url = '',
install_requires = [
'requests',
'beautifulsoup4',
'clipboard',
'Markdown',
'aiohttp'
],
include_package_data=True,
packages = find_packages(),
entry_points = {
'console_scripts': [
'image_commit = git_image_commiter.image_upload:main'
]
},
keywords = [
'GIT COMMITER',
'git commiter',
'IMAGE COMMITER',
'image commiter'
],
python_requires = '>=3',
zip_safe=False,
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows"
]
)