-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 903 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 903 Bytes
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
with open('./README.md') as fd:
long_des = fd.read()
setup(
name="VisualizeIt",
version="0.1",
description="Terminal based Algorithm Visualizer made in Python3 with Typer and Colorama",
author="Rohit Patil",
packages=['VisualizeIt', 'VisualizeIt_implementations'],
author_email="rahulhimesh09@gmail.com",
license="GPLv3+",
url="https://github.com/raprocks/VisualizeIt",
install_requires=["colorama", "typer"],
long_description=long_des,
long_description_content_type="text/markdown",
package_dir={'VisualizeIt': "VisualizeIt",
'VisualizeIt_implementations': "VisualizeIt/VisualizeIt_implementations"},
package_data={
"VisualizeIt": ["VisualizeIt_implementations/*"]
},
entry_points={
"console_scripts": ["visualize=VisualizeIt.main:app"
]
}
)