forked from amnong/easywebdav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 837 Bytes
/
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
import os
import functools
from setuptools import setup, find_packages
_IN_PACKAGE_DIR = functools.partial(os.path.join, "easywebdav")
with open(_IN_PACKAGE_DIR("__version__.py")) as version_file:
exec(version_file.read())
setup(name="easywebdav",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
],
description="A straight-forward WebDAV client, implemented using Requests",
license="ISC",
author="Amnon Grossman",
author_email="[email protected]",
url="http://github.com/amnong/easywebdav",
version=__version__,
packages=find_packages(exclude=["tests"]),
data_files = [],
install_requires=[
"requests",
],
scripts=[],
)