-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
73 lines (66 loc) · 1.69 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python3
""" file: setup.py (explore_australia)
author: Jess Robertson, @jesserobertson
date: October 2016
description: Setuptools installer script for explore_australia.
"""
from setuptools import setup, find_packages
REQUIREMENTS = [
'shapely',
'fiona',
'rasterio',
'numpy',
'scipy',
'owslib',
'ipykernel',
'matplotlib',
'geopandas',
'scikit-learn',
'pint',
'tqdm'
]
DEV_REQUIREMENTS = [
'pylint',
'pytest',
'pytest-runner',
'pytest-cov',
'coverage'
]
## PACKAGE INFORMATION
setup(
name='explore_australia',
version="0.1.0",
description='Data generator for machine learning on exploration data',
long_description='making something good here',
author='Jess Robertson',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
# Dependencies
install_requires=[
REQUIREMENTS
],
extras_require={
'dev': DEV_REQUIREMENTS
},
tests_require=DEV_REQUIREMENTS,
# Contents
packages=find_packages(exclude=['test*']),
include_package_data=True,
test_suite="tests",
# Some entry points for running CLIs
entry_points={
'console_scripts': [
'get_coverages = explore_australia:cli.main',
],
}
)