forked from andrewRowlinson/mplsoccer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1.11 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
from setuptools import setup
with open('README.md') as readme_file:
README = readme_file.read()
setup(name='mplsoccer',
version='0.0.3',
description='mplsoccer is a Python plotting library for drawing soccer / football pitches quickly in Matplotlib.',
long_description_content_type="text/markdown",
long_description=README,
classifiers=[ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Visualization'],
url='https://github.com/andrewRowlinson/mplsoccer',
author='Andrew Rowlinson',
author_email='[email protected]',
author_twitter='@numberstorm',
license='MIT',
packages=['mplsoccer'],
python_requires='>=3.6',
zip_safe=False)
install_requires = ['matplotlib',
'seaborn',
'numpy']