forked from davea/doxieapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 659 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from distutils import log
try:
import pypandoc
pypandoc.convert("README.md", "rst", outputfile="README.rst")
except ImportError:
log.warn("warning: Couldn't generate README.rst - is pypandoc installed?")
setup(
name = "doxieapi",
version = "0.0.2",
packages = find_packages(),
install_requires = ['requests'],
author = "Dave Arter",
author_email = "pypi@davea.me",
description = "Library for downloading scans from a Doxie Go Wi-Fi document scanner",
license = "LICENSE.txt",
keywords = "doxie document scanner",
url = "https://github.com/davea/doxieapi/",
)