-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (44 loc) · 1.39 KB
/
setup.py
File metadata and controls
51 lines (44 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
"""Setup script to build module. Templated from pymars"""
#!/usr/bin/env python3
import setuptools
from codecs import open
from os import path
import sys
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as readme_file:
readme = readme_file.read()
install_requires = [
'numpy',
'pyyaml'
]
tests_require = [
'pytest'
]
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
setup_requires = ['pytest-runner'] if needs_pytest else []
setuptools.setup(
name="CAML",
version='0.0.1',
author="Morgan Mayer",
author_email="mayermo@oregonstate.edu",
description=(
"Performs data cleaning and feature transformations for machine learning comparison studies. Uses the AutoML software TPOT, based in Scikit-Learn, for machine learning."
),
long_description=readme,
long_description_content_type="text/markdown",
license='MIT',
keywords=['machine learning'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
packages=setuptools.find_packages(),
install_requires=install_requires,
tests_require=tests_require,
setup_requires=setup_requires,
python_requires='>=3',
zip_safe=False,
)