Files
pyteamsnap/setup.py
2022-05-06 10:14:42 -05:00

24 lines
540 B
Python

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="pyteamsnap",
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=[
]
)