20 lines
615 B
Python
20 lines
615 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="testpkg",
|
|
version="0.1.1",
|
|
packages=find_packages(),
|
|
install_requires=[],
|
|
author="Test",
|
|
author_email="test@dont_spam_me.co",
|
|
description="A simple example private package",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
# url="https://github.com/nydasco/package_publishing",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.6',
|
|
) |