pytemplate/setup.py

17 lines
480 B
Python

from distutils.core import setup
setup(name='modulename',
version='0.0.0',
description='Library desc',
author='Author Name',
author_email='author@example.com',
url='https://example.com/',
packages=['basename'],
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)