Skip to content

Commit

Permalink
setup.py update
Browse files Browse the repository at this point in the history
  • Loading branch information
arihant2math committed Jan 1, 2023
1 parent a159af9 commit 517a29a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='ftc_api',
author='Ashwin Naren',
author_email='[email protected]',
license='MIT',
description='A python client to access the FIRST Tech Challenge API',
version='0.0.0',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.0.1',
install_requires=[
'httpx', 'attrs', 'python-dateutil'
],
]
)

0 comments on commit 517a29a

Please sign in to comment.