forked from lexich/yandex-disk-webdav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 729 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 729 Bytes
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
#-*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import sys
PY3 = sys.version_info[0] == 3
if PY3:
install_requires = ["six"]
else:
install_requires = ["six", "simplejson"]
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='yandexwebdav',
version='0.2.11',
include_package_data=True,
py_modules=['yandexwebdav'],
url='https://github.com/lexich/yandex-disk-webdav',
license='MIT',
author='lexich',
author_email='lexich121@gmail.com',
description='Simple wrapper to work with yandex disk using webdav Basic Auth',
long_description=README,
install_requires=install_requires,
scripts=[
"ydw.py"
]
)