pull/473/merge
Alexander Petree 2024-04-14 00:03:35 -04:00 committed by GitHub
commit cdc50b1e01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,18 @@
from setuptools import setup
"""A setuptools based setup module.
See: <https://packaging.python.org/en/latest/distributing.html>
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setup()
setuptools.setup(
name="bark_pkg",
version="0.1",
author_email="apetree1001@email.phoenix.edu",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)