Skip to content

Commit

Permalink
Update repo for 0.1.7b
Browse files Browse the repository at this point in the history
  • Loading branch information
berrli committed Aug 10, 2024
1 parent 0c74e01 commit 86b1541
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 77 deletions.
8 changes: 1 addition & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
include README.md
include LICENSE
include requirements.txt
recursive-include environmental_insights/environmental_insights_data *
recursive-include environmental_insights/environmental_insights_models *
recursive-include environmental_insights/environmental_insights_visulisations *
recursive-include Documentation *
recursive-include tests *
include LICENSE
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ The documentation for the project is included within the directory "Documentatio

## Pypip

Using `python -m build` will use the `pyproject.toml` file to locally build the package and store it within the `dist` directory. This can then be installed using `pip install dist/*.whl`. The final `dist` files can be uploaded to PyPI via twine.
Using `python -m build` will use the `pyproject.toml` file to locally build the package and store it within the `dist` directory. This can then be installed using `pip install dist/*.whl`. The final `dist` files can be uploaded to PyPI via twine, using "".
14 changes: 0 additions & 14 deletions environmental_insights/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +0,0 @@
# environmental_insights/__init__.py

# Import specific functions from each module
from .air_pollution_functions import *

from .data import *

from .download import *

from .models import *

from .variables import *

# You can also add any initialization code needed for your package here
58 changes: 17 additions & 41 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,30 @@ requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "environmental-insights"
version = "0.1.3_beta"
name = "environmental_insights"
version = "0.1.7b0"
description = "A Python package for democratizing access to ambient air pollution data and predictive analytics."
readme = "README.md"
requires-python = ">=3.6"
license = {text = "GNU General Public License v3 (GPLv3)"}

authors = [
{name = "Liam J. Berrisford", email = "l.berrisford@exeter.ac.uk"}
{ name="Liam J. Berrisford", email="l.berrisford@exeter.ac.uk" }
]
license = { text="GNU General Public License v3 (GPLv3)" }
keywords = ["air pollution", "predictive analytics", "environmental data", "geospatial analysis"]
readme = "README.md"

classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]

keywords = ["air pollution", "data analysis", "environmental insights"]

urls = { "Homepage" = "https://github.com/berrli/Environmental-Insights" }

dependencies = [
"lightgbm==3.3.3",
"geopandas==0.14.1",
"pandas==2.1.3",
"scipy==1.11.4",
"matplotlib==3.8.2",
"overpy==0.6",
"shapely==2.0.2",
"pyarrow==14.0.1",
"pyogrio==0.7.2",
"geopandas",
"lightgbm",
"matplotlib",
"overpy",
"pandas",
"pyarrow",
"pyogrio",
"requests",
"rpy2"
]

[project.optional-dependencies]
dev = [
"pytest==8.3.2",
"black==23.9.1",
"nbformat>=5.0"
"rpy2",
"scipy",
"shapely"
]

[project.scripts]
insights = "environmental_insights.main:main"

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
where = ["environmental_insights"]
include = ["*"]
where = ["."]
14 changes: 0 additions & 14 deletions requirements.txt

This file was deleted.

0 comments on commit 86b1541

Please sign in to comment.