-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 1.06 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
#!/usr/bin/env python
from setuptools import setup
import sys
__VERSION__ = "0.4.1"
assert sys.version_info[0] == 3, "We require Python > 3"
setup(
name="bos-incidents",
version=__VERSION__,
description=("Private module for BOS incident storage"),
long_description=open("README.md").read(),
download_url="https://github.com/pbsa/bos-incidents/tarball/" + __VERSION__,
author='Peerplays Community',
maintainer='Peerplays Community',
url='http://pbsa.info',
keywords=["peerplays", "bos"],
packages=["bos_incidents"],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
],
entry_points={"console_scripts": ["bos-incidents = bos_incidents.cli:main"]},
install_requires=open("requirements.txt").readlines(),
setup_requires=["pytest-runner"],
tests_require=["pytest"],
include_package_data=True,
)