-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
85 lines (77 loc) · 2.18 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
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python3
""" file: setup.py (earthchem)
author: Jess Robertson
CSIRO Mineral Resources
date: October 2016
description: Setuptools installer script for earthchem.
"""
from setuptools import setup, find_packages
import versioneer
with open('README.md', 'r') as src:
LONG_DESCRIPTION = src.read()
## PACKAGE INFORMATION
setup(
name='earthchem',
version=versioneer.get_version(),
description='Data slurper for getting stuff from Earthchem services',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license='MIT',
author='Jess Robertson',
author_email='[email protected]',
url='https://github.com/jesserobertson/earthchem-pyclient.git',
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',
],
project_urls={
'Test coverage': 'https://coveralls.io/github/jesserobertson/earthchem-pyclient',
'Test status': 'https://travis-ci.org/jesserobertson/earthchem-pyclient'
},
# Dependencies
install_requires=[
'geopandas',
'requests',
'beautifulsoup4',
'lxml',
'tqdm',
'python-ternary',
'periodictable',
'scikit-learn',
'scipy'
],
extras_require={
'dev': [
'versioneer',
'nbstripout',
'nbdime'
]
},
tests_require=[
'pytest',
'pytest-runner',
'pytest-cov',
'coverage'
],
# Contents
packages=find_packages(exclude=['test*']),
test_suite="tests",
package_data={
'earthchem': ['resources/*']
},
# other stuff
cmdclass=versioneer.get_cmdclass(),
# Some entry points for running rosedb
entry_points={
'console_scripts': [
'echem = cli:cli',
],
}
)