-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (28 loc) · 963 Bytes
/
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
from turtle import down
import setuptools
import sys
import shutil
setuptools.setup(
name='PyTaskbarProgress',
version='0.0.8',
author='somePythonProgrammer',
description='The ultimate taskbar progress python package!',
packages = setuptools.find_packages(include=['PyTaskbar']),
package_dir={'PyTaskbarProgress': 'PyTaskbar'},
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows :: Windows 10',
],
python_requires='>=3.6',
install_requires=[
'comtypes',
'pygetwindow',
'setuptools',
],
include_package_data=True,
url = 'https://github.com/somePythonProgrammer/PyTaskbar',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
zip_safe=False,
download_url='https://github.com/somePythonProgrammer/PyTaskbar/archive/refs/tags/0.0.8.tar.gz'
)