Skip to content

Instantly share code, notes, and snippets.

@risenW
Created August 4, 2020 08:39
Show Gist options
  • Save risenW/e9fc3a16ea8d9ca2a6512c4aa47a0a2b to your computer and use it in GitHub Desktop.
Save risenW/e9fc3a16ea8d9ca2a6512c4aa47a0a2b to your computer and use it in GitHub Desktop.
Python package setup template
"""Setup for the mathist package."""
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author="",
author_email="",
name='',
license="MIT",
description='',
version='v0.0.0',
long_description=README,
url='',
packages=setuptools.find_packages(),
python_requires=">=3.5",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment