Skip to content

Instantly share code, notes, and snippets.

@innovia
Last active October 23, 2022 13:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save innovia/c1fd315ae186fd402a723af0564817a7 to your computer and use it in GitHub Desktop.
Save innovia/c1fd315ae186fd402a723af0564817a7 to your computer and use it in GitHub Desktop.
from setuptools import find_packages, setup
from package import Package
setup(
author="Ami Mahloof",
author_email="author@email.com",
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