-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version is not hard coded in version dialog
- Loading branch information
Showing
6 changed files
with
70 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
recursive-include . * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r", encoding="utf8") as fh: | ||
long_description = fh.read() | ||
|
||
with open("requirements.txt", "r") as f: | ||
requirements = f.read().splitlines() | ||
|
||
__version__ = "0.0.0" | ||
with open("DLTA_AI_app/labelme/__init__.py", "r") as f: | ||
for line in f.readlines(): | ||
if line.startswith("__version__"): | ||
__version__ = line.split("=")[1].strip().strip('"') | ||
break | ||
|
||
setuptools.setup( | ||
name="DLTA-AI", | ||
version=f"{__version__}", | ||
author="0ssamaak0", | ||
author_email="[email protected]", | ||
description="DLTA-AI is the next generation of annotation tools, integrating the power of Computer Vision SOTA models to Labelme in a seamless expirence and intuitive workflow to make creating image datasets easier than ever before", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/0ssamaak0/DLTA-AI", | ||
package_dir={"DLTA_AI_app": "DLTA_AI_app"}, | ||
python_requires='>=3.8', | ||
install_requires=requirements, | ||
package_data={"": ["*"]}, | ||
license="GPLv3", | ||
entry_points={ | ||
"console_scripts": [ | ||
"DLTA-AI=DLTA_AI_app.__main__:main" | ||
] | ||
} | ||
) | ||
|