pytemplate/setup.py

17 lines
530 B
Python
Raw Permalink Normal View History

2019-09-09 07:42:38 +00:00
from setuptools import setup, find_packages
2019-07-15 22:22:48 +00:00
setup(name='modulename',
version='0.0.0',
description='Library desc',
author='Author Name',
author_email='author@example.com',
url='https://example.com/',
2019-09-09 07:42:38 +00:00
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
2019-07-15 22:22:48 +00:00
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)