forked from sentinel-hub/eo-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated setup, CI file, manifest and develop requirements
- Loading branch information
Showing
4 changed files
with
62 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
include requirements*.txt | ||
|
||
include README.md | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
pytest>=3.0.0 | ||
pytest>=4.0.0 | ||
pytest-cov | ||
pylint | ||
radon | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,25 +11,54 @@ def get_long_description(): | |
return long_description | ||
|
||
|
||
setup(name='eo-learn', | ||
python_requires='>=3.5', | ||
version='0.4.1', | ||
description='Earth observation processing framework for machine learning in Python', | ||
long_description=get_long_description(), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/sentinel-hub/eo-learn', | ||
author='Sinergise EO research team', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=[], | ||
include_package_data=True, | ||
install_requires=[ | ||
'eo-learn-core>=0.4.1', | ||
'eo-learn-coregistration>=0.4.0', | ||
'eo-learn-features>=0.4.1', | ||
'eo-learn-geometry>=0.4.0', | ||
'eo-learn-io>=0.4.1', | ||
'eo-learn-mask>=0.4.1', | ||
'eo-learn-ml-tools>=0.4.1' | ||
], | ||
zip_safe=False) | ||
def parse_requirements(file): | ||
return sorted(set( | ||
line.partition('#')[0].strip() | ||
for line in open(os.path.join(os.path.dirname(__file__), file)) | ||
) - set('')) | ||
|
||
|
||
setup( | ||
name='eo-learn', | ||
python_requires='>=3.5', | ||
version='0.4.1', | ||
description='Earth observation processing framework for machine learning in Python', | ||
long_description=get_long_description(), | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/sentinel-hub/eo-learn', | ||
author='Sinergise EO research team', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=[], | ||
include_package_data=True, | ||
install_requires=[ | ||
'eo-learn-core>=0.4.1', | ||
'eo-learn-coregistration>=0.4.0', | ||
'eo-learn-features>=0.4.1', | ||
'eo-learn-geometry>=0.4.0', | ||
'eo-learn-io>=0.4.1', | ||
'eo-learn-mask>=0.4.1', | ||
'eo-learn-ml-tools>=0.4.1' | ||
], | ||
extras_require={ | ||
'DEV': parse_requirements('requirements-dev.txt'), | ||
'DOCS': parse_requirements('requirements-docs.txt') | ||
}, | ||
zip_safe=False, | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: MacOS', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: Unix', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Scientific/Engineering', | ||
] | ||
) |