mirror of
https://github.com/qmk/qmk_cli.git
synced 2026-07-25 16:42:55 -04:00
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
from configparser import ConfigParser
|
|
from setuptools import setup, find_packages
|
|
|
|
setup_cfg = ConfigParser()
|
|
setup_cfg.read('setup.cfg')
|
|
metadata = setup_cfg['metadata']
|
|
|
|
if __name__ == "__main__":
|
|
setup(
|
|
name=metadata['dist-name'],
|
|
description='A program to help users work with QMK Firmware.',
|
|
entry_points={
|
|
'console_scripts': ['%s = %s' % l for l in setup_cfg['entry_points'].items()]
|
|
},
|
|
license='MIT License',
|
|
url=metadata['home-page'],
|
|
version=setup_cfg['bumpversion']['current_version'],
|
|
author=metadata['author'],
|
|
author_email=metadata['author-email'],
|
|
maintainer=metadata['author'],
|
|
maintainer_email=metadata['author-email'],
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type="text/markdown",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Console',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: System Administrators',
|
|
'Intended Audience :: End Users/Desktop',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Natural Language :: English',
|
|
'Programming Language :: Python :: 3 :: Only',
|
|
'Topic :: Scientific/Engineering',
|
|
'Topic :: Software Development',
|
|
'Topic :: Utilities',
|
|
],
|
|
requires_python=metadata['requires-python'],
|
|
install_requires=[
|
|
#"milc", #FIXME(skullydazed): Included in the repo for now.
|
|
"appdirs",
|
|
"argcomplete",
|
|
"colorama"
|
|
],
|
|
)
|