Skip to content

Commit

Permalink
Apply black
Browse files Browse the repository at this point in the history
  • Loading branch information
17o2 authored and laurierloi committed Jan 19, 2023
1 parent e6f76f9 commit 343cd29
Show file tree
Hide file tree
Showing 12 changed files with 1,479 additions and 752 deletions.
53 changes: 26 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,40 +7,39 @@

from src.wireviz import APP_URL, CMD_NAME, __version__

README_PATH = Path(__file__).parent / 'docs' / 'README.md'
README_PATH = Path(__file__).parent / "docs" / "README.md"

setup(
name=CMD_NAME,
version=__version__,
author='Daniel Rojas',
#author_email='',
description='Easily document cables and wiring harnesses',
author="Daniel Rojas",
# author_email='',
description="Easily document cables and wiring harnesses",
long_description=open(README_PATH).read(),
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
install_requires=[
'click',
'pyyaml',
'pillow',
'graphviz',
],
license='GPLv3',
keywords='cable connector hardware harness wiring wiring-diagram wiring-harness',
"click",
"pyyaml",
"pillow",
"graphviz",
],
license="GPLv3",
keywords="cable connector hardware harness wiring wiring-diagram wiring-harness",
url=APP_URL,
package_dir={'': 'src'},
packages=find_packages('src'),
package_dir={"": "src"},
packages=find_packages("src"),
entry_points={
'console_scripts': [
'wireviz=wireviz.wv_cli:wireviz',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
"console_scripts": [
"wireviz=wireviz.wv_cli:wireviz",
],

},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)
Loading

0 comments on commit 343cd29

Please sign in to comment.