forked from PradeepG00/P3-SemanticSegmentation
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 619 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 619 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
# from setuptools import setup
# setup.py
# from setuptools import setup, find_packages
import setuptools
setuptools.setup(
# defined as the cli package (Note the naming)
name="mscgNetV2",
version="0.1.0",
author="",
author_email="",
url="",
# functions as a search for the name of the package defined in the name variable
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=["Click"
# , "PyTorch", "NumPy"
],
entry_points="""
[console_scripts]
mscgnet=cli.main:cli
""",
python_requires=">=3.6",
)