second commit

This commit is contained in:
2022-05-04 08:46:35 -05:00
parent 2e9ec4e70a
commit b6e28aa16a
9 changed files with 35 additions and 38 deletions

24
setup.py Normal file
View File

@@ -0,0 +1,24 @@
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'Python package to interface with TeamSnap API'
LONG_DESCRIPTION = 'https://www.teamsnap.com/documentation'
# Setting up
setup(
name="teamsnap-python",
version=VERSION,
author="Anthony Correa",
author_email="a@correa.co",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
"api-client",
"collection_json"
],
keywords=['teamsnap'],
classifiers=[
]
)