-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 806 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 806 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
31
32
"""Setup to install make importable packages."""
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
import plantstuff as pkg
setup(
name=pkg.__name__,
version=pkg.__version__,
description=pkg.__doc__,
long_description=__doc__,
author=pkg.__author__,
author_email=pkg.__author_email__,
install_requires=[],
extras_require={
'app': ['flask'],
'dataviz': ['pygraphviz'],
'ocr': ['pytesseract'],
'schema': ['schematics', 'neomodel'],
'scrapers': ['pyquery', 'scrapy', 'pymongo'],
},
url=pkg.__url__,
package_dir=pkg.__pkgdir__,
packages=find_packages(exclude=["tests", "tests.*"]),
zip_safe=False,
include_package_data=True,
)