Last active
October 23, 2022 13:22
-
-
Save innovia/c1fd315ae186fd402a723af0564817a7 to your computer and use it in GitHub Desktop.
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
from setuptools import find_packages, setup | |
from package import Package | |
setup( | |
author="Ami Mahloof", | |
author_email="[email protected]", | |
packages=find_packages(), | |
include_package_data=True, | |
cmdclass={ | |
"package": Package | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment