-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1007 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
29
from setuptools import setup, find_packages
setup(
name='miningtraitdata',
url='https://github.com/alrichardbollans/mining_trait_data',
author='Adam Richard-Bollans',
author_email='[email protected]',
# Needed to actually package something
packages=find_packages(include=['clean_plant_occurrences', 'data_compilation_methods',
'powo_searches',
'wikipedia_searches'], exclude=['unit_test_methods']),
package_data={
"clean_plant_occurrences": ["inputs/wgsrpd-master/level3/*"],
},
install_requires=[
"wcvpy >= 1.3.2",
'openpyxl'
],
extras_require={
'powo': ["pykew"],
'wiki': ["Wikipedia-API"],
'occurrences': ['geopandas']
},
# *strongly* suggested for sharing
version='1.1',
description='A set of python packages for mining plant trait data',
long_description=open('README.md').read(),
)