-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.07 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
# -*- coding: utf-8 -*-
"""
Trapp, a python package for linking, analyzing, and extending soccer data.
"""
import io
from setuptools import find_packages, setup
with io.open('LICENSE') as f:
license = f.read()
setup(
name='trapp',
version='0.6.0',
description='Link, analyze, and extend soccer data',
url='https://github.com/matt-bernhardt/trapp',
license=license,
author='Matt Bernhardt',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
install_requires=[
'xlrd',
'mysql-connector-python-rf',
],
dependency_links=[
'http://dev.mysql.com/downloads/connector/python/',
],
entry_points={
'console_scripts': ['trapp=trapp.command_line:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intendend Audience :: Other Audience',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
]
)