initial commit

This commit is contained in:
2022-06-20 20:34:14 -05:00
committed by asc
parent 8f6ad30acf
commit 94568e0fa7
30 changed files with 1547 additions and 49 deletions

View File

@@ -1,24 +1,44 @@
#!/usr/bin/env python
"""The setup script."""
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'
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [ ]
test_requirements = [ ]
# 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'],
author_email='a@correa.co',
python_requires='>=3.6',
classifiers=[
]
)
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description="An unoffical wrapper for the TeamSnap API",
install_requires=requirements,
license="MIT license",
long_description=readme + '\n\n' + history,
include_package_data=True,
keywords='pyteamsnap',
name='pyteamsnap',
packages=find_packages(include=['pyteamsnap', 'pyteamsnap.*']),
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/anthonyscorrea/pyteamsnap',
version='0.1.0',
zip_safe=False,
)