-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (18 loc) · 958 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_namespace_packages
setup(
name = 'forest_puller',
version = '1.4.2',
description = 'A package for retrieving data concerning forests on the European continent.',
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
license = 'MIT',
url = 'http://github.com/xapple/forest_puller/',
author = 'Lucas Sinclair',
author_email = '[email protected]',
packages = find_namespace_packages(),
install_requires = ['pandas>=1.0.0', 'matplotlib>=3.0.0', 'tqdm>=4.41.1',
'numpy>=1.16', 'brewer2mpl>=1.4.1', 'lxml>=4.3.0',
'requests', 'seaborn', 'sh',
'autopaths==1.4.6', 'plumbing==2.9.8', 'pymarktex==1.4.6'],
include_package_data = True,
)