-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.21 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.21 KB
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
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(name = 'lostdata',
version = '0.0.4',
description = 'LOcalized STructured DAta TAbles',
url = 'https://github.com/dicaso/lostdata',
author = 'Christophe Van Neste',
author_email = 'christophe.vanneste@ugent.be',
license = 'MIT',
packages = find_packages(),
python_requires='>3.6',
install_requires = [
#Generated with `pipreqs .` and then moved here from requirements.txt
'appdirs',
'numpy',
'pandas',
'xarray',
'kindi',
'networkx',
'biomart',
'gffutils',
'pyliftover',
'requests',
'plumbum',
'xmltodict',
'rpy2==3.5.15'
],
extras_require = {
#for netCDF4 output, depends on: libnetcdf-dev libhdf5-dev
'netcdf': ['netCDF4'],
'documentation': ['Sphinx']
},
zip_safe = False,
#entry_points = {
# 'console_scripts': ['getLSDataset=LSD.command_line:main'],
#},
test_suite = 'nose.collector',
tests_require = ['nose']
)
#To install with symlink, so that changes are immediately available:
#pip install -e .