-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.01 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
import os
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="footballscoring",
version = "0.2",
author = "Dominik Zapf",
author_email = "[email protected]",
description = ("A utility package for managing a american football game, "\
"including scoring, down, distance and so on, Game Clock and game setup with "\
"team names and logos. Can be used for further implementation like live tickers"\
"or displaying scoreboards."),
license = "Apache License 2.0",
keywords = "american football scoring scoreboard liveticker",
url = "https://github.com/zapfdk/pyfootballscoring",
packages = ['footballscoring', 'tests'],
long_description = long_description,
long_description_content_type = "text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License"
],
install_requires = [
'apscheduler'
]
)