-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 753 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-
# Learn more: https://pyett.readthedocs.io/
from setuptools import setup, find_packages
with open("README.md") as fh:
readme = fh.read()
with open("LICENSE.md") as f:
license = f.read()
setup(
name="pyETT",
version="0.2.6",
description="Python library for Eleven VR Table Tennis data",
long_description=readme,
long_description_content_type="text/markdown",
author="Tharsis T. P. Souza",
url="https://pyett.readthedocs.io/",
license=license,
packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=[
"requests==2.22.0",
"pandas==1.3.0",
"nbsphinx==0.8.6",
"aiohttp==3.6.2",
"lxml",
"pandas_stubs==1.1.0.12",
"nest_asyncio==1.5.1"
],
)