-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 866 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
from setuptools import setup, find_packages
setup(
name='pyg600',
version_config={
"template": "{tag}",
"dev_template": "{tag}.dev{ccount}+git.{sha}",
"dirty_template": "{tag}.dev{ccount}+git.{sha}.dirty",
"starting_version": "0.0.1",
"version_file": "",
"count_commits_from_version_file": False
},
author="James Waters",
author_email="[email protected]",
description="Utility program for binding actions to keys on the Logitech G600 gaming mouse",
url="https://github.com/j-waters/pyg600",
install_requires=['pymacropad', 'Click'],
setup_requires=['setuptools-git-versioning'],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'pyg600=pyg600.__main__:main'
]
},
python_requires='>=3.7',
)