-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
27 lines (25 loc) · 902 Bytes
/
setup.py
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
import setuptools
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="pyAFL",
version="0.4.3",
description="Python data fetching library for the Australian Football League",
long_description="pyAFL is a AFL (Australian Football League) data fetching libary. It scrapes data from https://afltables.com/ and converts results to structured Python objects for easier analytics.",
url="https://github.com/RamParameswaran/pyAFL",
author="Ram Parameswaran",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(
exclude=[
"tests",
]
),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=required,
)