- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
21 lines (19 loc) · 623 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (19 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fromsetuptoolsimportsetup
setup(
name='python-shell',
version="0.1",
description='Python embeded shell',
long_description="",
license='MIT',
author='Microsoft Corporation',
author_email='azpycli@microsoft.com',
url='https://github.com/bquantump/python-shell',
zip_safe=False,
classifiers=["Programming Language :: Python :: 3"],
packages=['pyshell'],
install_requires=['pytest', 'termcolor', 'sultan @ git+https://github.com/bquantump/sultan@master'],
include_package_data=True,
entry_points={
'console_scripts': ['pyshell=pyshell.runner:main']
}
)