forked from PnX-SI/gn_module_monitoring
-
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.
- Loading branch information
Maxime Vergez
committed
Dec 5, 2022
1 parent
5be3c84
commit 0b5a3b8
Showing
40 changed files
with
73 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include VERSION | ||
include README.md | ||
include requirements.in |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
MODULE_CODE = "MONITORINGS" | ||
MODULE_PICTO = "fa-puzzle-piece" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[tool.pytest.ini_options] | ||
minversion = "6.0" | ||
testpaths = [ | ||
"backend", | ||
] | ||
|
||
[tool.coverage.run] | ||
source = [ | ||
"gn_module_monitoring", | ||
] | ||
omit = [ | ||
"*/tests/*", | ||
"*/migrations/*", | ||
] | ||
|
||
[tool.black] | ||
line-length = 99 |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import setuptools | ||
from pathlib import Path | ||
|
||
|
||
root_dir = Path(__file__).absolute().parent | ||
with (root_dir / 'VERSION').open() as f: | ||
version = f.read() | ||
with (root_dir / 'README.rst').open() as f: | ||
long_description = f.read() | ||
with (root_dir / 'requirements.in').open() as f: | ||
requirements = f.read().splitlines() | ||
|
||
|
||
setuptools.setup( | ||
name='gn_module_monitoring', | ||
version=version, | ||
description="GeoNature", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
maintainer='Parcs nationaux des Écrins et des Cévennes', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/PnX-SI/gn_module_monitoring', | ||
packages=setuptools.find_packages('backend'), | ||
package_dir={'': 'backend'}, | ||
package_data={'gn_module_monitoring.migrations': ['data/*.sql']}, | ||
install_requires=requirements, | ||
tests_require=[], | ||
zip_safe=False, | ||
entry_points={ | ||
'gn_module': [ | ||
'code = gn_module_monitoring:MODULE_CODE', | ||
'picto = gn_module_monitoring:MODULE_PICTO', | ||
'blueprint = gn_module_monitoring.blueprint:blueprint', | ||
'config_schema = gn_module_monitoring.conf_schema_toml:GnModuleSchemaConf', | ||
#'migrations = gn_module_monitoring:migrations', | ||
], | ||
}, | ||
classifiers=['Development Status :: 1 - Planning', | ||
'Intended Audience :: Developers', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'License :: OSI Approved :: GNU Affero General Public License v3' | ||
'Operating System :: OS Independent'], | ||
) |