Skip to content

Commit

Permalink
Setuptools work?
Browse files Browse the repository at this point in the history
  • Loading branch information
Gordin committed Apr 5, 2020
1 parent a4b3e71 commit 16deb78
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ipython = "*"
coverage = "*"
pprofile = "*"
flake8 = "*"
setuptools = "*"

[packages]
npyscreen = "*"
Expand Down
2 changes: 1 addition & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from setuptools import setup, find_packages

setup(
name='windows_terminal_scheme_manager',
version='0.2',
packages=['windows_terminal_scheme_manager'],
include_package_data=True,
install_requires=[
'Click',
],
entry_points={
'console_scripts': [
'wtsm = windows_terminal_scheme_manager.scheme_manager:cli'
]
},
)
File renamed without changes.

0 comments on commit 16deb78

Please sign in to comment.