-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better describe package, and deploy it
- Loading branch information
1 parent
b24935d
commit 85ab129
Showing
3 changed files
with
30 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ core.* | |
/include | ||
/dist | ||
/build | ||
|
||
semeio/version.py |
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 |
---|---|---|
|
@@ -15,8 +15,10 @@ def package_files(directory): | |
|
||
setup( | ||
name="semeio", | ||
version="0.0.1", | ||
use_scm_version={"write_to": "semeio/version.py"}, | ||
author="Software Innovation Bergen, Equinor ASA", | ||
author_email="[email protected]", | ||
url="https://github.com/equinor/semeio", | ||
description="Jobs and workflow jobs for Ert.", | ||
packages=[ | ||
"semeio", | ||
|
@@ -28,13 +30,27 @@ def package_files(directory): | |
"semeio_jobs = semeio.hook_implementations.jobs", | ||
] | ||
}, | ||
license="GPL-3.0", | ||
platforms="any", | ||
classifiers=[ | ||
"Development Status :: 1 - Planning", | ||
"Environment :: Plugins", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Natural Language :: English", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.7", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
install_requires=[ | ||
"configsuite", | ||
"numpy", | ||
"pandas", | ||
"six", | ||
], | ||
setup_requires=["pytest-runner"], | ||
setup_requires=["pytest-runner", "setuptools_scm"], | ||
tests_require=["pytest", "mock"], | ||
test_suite="tests", | ||
package_data={"": job_files}, | ||
|