-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.43 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""Package setup script.
This script handles everything about package publishing on PyPI.
"""
# Importing libraries
from setuptools import setup, find_packages
# Reading README.md for project description
with open("README.md", "r", encoding='utf-8') as f:
__long_description__ = f.read()
# Setting up package information
setup(
name='nbaflow',
version='0.1.1',
author='Thiago Panini',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
"nba_api",
"pandas"
],
license='MIT',
description="Making it easier to extract and analyze NBA data.",
long_description=__long_description__,
long_description_content_type="text/markdown",
url='https://github.com/ThiagoPanini/nbaflow',
keywords='Python, NBA',
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: Portuguese (Brazilian)",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules"
],
python_requires=">=3.0.0"
)