-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (46 loc) · 1.89 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
#! /usr/bin/env python
"""Pedotransfer function development using Genetic Programming"""
from setuptools import setup, find_packages
import pyPTF
DESCRIPTION = __doc__
VERSION = pyPTF.__version__
setup(name='pyPTF',
version=VERSION,
description=DESCRIPTION,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="soil modelling uncertainty",
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
# 'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
author='José Padarian',
author_email='[email protected]',
url='https://github.com/spadarian/pyPTF',
license='GPL-3.0',
packages=find_packages(),
zip_safe=False,
package_data={'': ['LICENSE'],
'pyPTF': ['test/*.py', 'datasets/data/*']},
install_requires=['gplearn==0.3.0',
'sympy==1.2',
'pygmo>=2.8',
'pandas>=0.22',
'matplotlib==2.2.3',
],
tests_require=['pytest'],
setup_requires=['pytest-runner'],
extras_require={'docs': ['Sphinx'],
})