-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.04 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
from distutils.core import setup
setup(
name="meniga_client",
packages=["meniga_client"],
version="0.10.1",
description="Client for the Meniga API",
author="Dagur Ammendrup",
author_email="[email protected]",
url="https://github.com/Dagur/meniga_client",
keywords=["meniga", "api"],
requires=['requests'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description="""\
Meniga API Client
-------------------------------------
A python library for interfacing with the Meniga APIs (which are not publicly available).
This is a port of https://github.com/krummi/meniga_client
Look there for more information before using this.
Requires Python 3
"""
)