Created
October 8, 2020 21:31
-
-
Save iamvee/d06b6d9d5aebeedb78af9052a763be48 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import setuptools | |
setuptools.setup( | |
name="jalinux", | |
version="0.0.2", | |
author="Vahid Naeini", | |
install_requires=['docutils>=0.3'], | |
author_email="[email protected]", | |
description="A small example package", | |
long_description="long description goes here", | |
long_description_content_type="text/markdown", | |
url="https://github.com/iamvee/test", | |
packages=setuptools.find_packages(), | |
classifiers=[ | |
"Programming Language :: Python :: 3", | |
"License :: OSI Approved :: MIT License", | |
"Operating System :: OS Independent", | |
], | |
python_requires='>=3.7', | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment