Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup file #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 4 additions & 24 deletions setup.py
Original file line number Diff line number Diff line change
@@ -6,27 +6,9 @@

import sys
import setuptools
#from setuptools.command.test import test as TestCommand
from codecs import open
from os import path


# class PyTest(TestCommand):
# def initialize_options(self):
# TestCommand.initialize_options(self)
# self.pytest_args = ["--verbose", "tests/tests.py"]
#
# def finalize_options(self):
# TestCommand.finalize_options(self)
# self.test_args = []
# self.test_suite = True
#
# def run_tests(self):
# import pytest
# errno = pytest.main(self.pytest_args)
# sys.exit(errno)


here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
@@ -61,7 +43,7 @@
platforms=['Any'],

# Version number
version=1.2,
version="1.3",

# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
@@ -74,6 +56,7 @@
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: GIS',

# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
@@ -86,7 +69,7 @@
],

# What does your project relate to?
keywords='plant phenotyping bioinformatics hyperspectral machine-learning sensing',
keywords='plant phenotyping, bioinformatics, hyperspectral, machine-learning, remote sensing',

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
@@ -109,9 +92,6 @@
# extras_require={
# 'test': ['pytest-runner', 'pytest'],
# },
setup_requires=["pytest-runner"],
tests_require=['pytest'],
############ scripts=["plantcv-train.py", "plantcv-utils.py", "plantcv-workflow.py"]

# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
@@ -134,4 +114,4 @@
# 'sample=sample:main',
# ],
# },
)
)