Skip to content

Instantly share code, notes, and snippets.

@iamvee
Created October 8, 2020 21:31
Show Gist options
  • Save iamvee/d06b6d9d5aebeedb78af9052a763be48 to your computer and use it in GitHub Desktop.
Save iamvee/d06b6d9d5aebeedb78af9052a763be48 to your computer and use it in GitHub Desktop.
import setuptools
setuptools.setup(
name="jalinux",
version="0.0.2",
author="Vahid Naeini",
install_requires=['docutils>=0.3'],
author_email="naeini.v@gmail.com",
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