-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (39 loc) · 1.02 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 -*-
from setuptools import setup
setup(
name='StudDP',
version='2.0.0',
author='Sebastian Höffner',
author_email='[email protected]',
maintainer='Maxim Schuwalow',
maintainer_email='[email protected]',
packages=['studdp'],
install_requires=[
"cffi >= 1.9.1",
"cryptography >= 1.6",
"idna >= 2.1",
"keyring >= 10.1",
"keyrings.alt",
"pyasn1 >= 0.1.9",
"pycparser >= 2.17",
"requests >= 2.12.3",
"SecretStorage >= 2.3.1",
"six >= 1.10.0",
"python-daemon",
"pidfile",
"memorised",
"werkzeug",
"ruamel.yaml"
],
url='https://github.com/shoeffner/StudDP.git',
license='MIT',
description='StudIP file downloader in python',
long_description=open('README.rst').read(),
keywords="StudIP Downloader Osnabrueck UOS utility",
zip_safe=False,
entry_points={
"console_scripts": [
"studdp = studdp.studdp:main"
],
},
)