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
25 lines (22 loc) · 711 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 711 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
#!/usr/bin/env python
from distutils import log
from setuptools import find_packages
from setuptools import setup
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/",
python_requires=">=3.4",
)