FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-webuntis/setup.py at master · MarcProe/python-webuntis · GitHub
MarcProe
/
python-webuntis
Public
forked from
python-webuntis/python-webuntis
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-webuntis
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
45 lines (41 loc) · 1.56 KB
Breadcrumbs
python-webuntis
/
setup.py
Copy path
File metadata and controls
executable file
·
45 lines (41 loc) · 1.56 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
This file is part of python-webuntis
:copyright: (c) 2012 by Markus Unterwaditzer.
:license: BSD, see LICENSE for more details.
"""
from
setuptools
import
setup
,
find_packages
from
sys
import
version_info
dependencies
=
[
'requests'
]
setup
(
name
=
'webuntis'
,
version
=
'0.1.24'
,
author
=
u'Markus Unterwaditzer, August Hörandl'
,
author_email
=
'markus@unterwaditzer.net, august.hoerandl@gmx.at'
,
packages
=
find_packages
(),
include_package_data
=
True
,
url
=
'https://github.com/python-webuntis/python-webuntis'
,
license
=
'new-style BSD'
,
description
=
'Bindings for WebUntis API'
,
long_description
=
open
(
'README.rst'
).
read
(),
long_description_content_type
=
'text/x-rst'
,
install_requires
=
dependencies
,
classifiers
=
[
'Intended Audience :: Developers'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
'Operating System :: OS Independent'
,
'License :: OSI Approved :: BSD License'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Programming Language :: Python :: 3.9'
,
'Programming Language :: Python :: 3.10'
,
'Programming Language :: Python :: 3.11'
,
'Programming Language :: Python :: 3.12'
,
'Programming Language :: Python :: Implementation :: PyPy'
]
)
Back
|
FazBrowse Home
|
New Git URL