-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1 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
from setuptools import find_packages
from setuptools import setup
from wcheck import __version__
install_requires = ["PyYAML", "setuptools", "GitPython", "rich", "pendulum", "PyQt5"]
setup(
name="wcheck",
version=__version__,
install_requires=install_requires,
packages=find_packages(),
url="https://github.com/PastorD/wcheck",
author="Daniel Pastor",
author_email="danpasmor@gmail.com",
maintainer="Daniel Pastor",
maintainer_email="danpasmor@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"License :: MIT Software License",
"Programming Language :: Python",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
],
description="wcheck compares list of git repositories and checks for differences",
long_description="wcheck compares list of git repositories and checks for differences",
entry_points={
"console_scripts": [
"wcheck = wcheck.wcheck:main",
],
},
)