Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi committed May 16, 2022
1 parent 34ed289 commit 18507ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion carculator_truck/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
)

# library version
__version__ = (0, 3, 3)
__version__ = (0, 3, 4)

from pathlib import Path

Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
from pathlib import Path

from setuptools import setup

Expand All @@ -7,6 +8,10 @@
if root_dir:
os.chdir(root_dir)

# read the contents of your README file
this_directory = Path(__file__).parent
README = (this_directory / "README.md").read_text()


# Probably should be changed, __init__.py is no longer required for Python 3
for dirpath, dirnames, filenames in os.walk("carculator_truck"):
Expand All @@ -28,7 +33,7 @@ def package_files(directory):

setup(
name="carculator_truck",
version="0.3.3",
version="0.3.4",
packages=packages,
author="Romain Sacchi <[email protected]>",
license=open("LICENSE").read(),
Expand All @@ -51,6 +56,8 @@ def package_files(directory):
url="https://github.com/romainsacchi/carculator_truck",
description="Prospective environmental and economic life cycle assessment"
"of medium and heavy goods vehicles",
long_description_content_type="text/markdown",
long_description=README,
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 18507ef

Please sign in to comment.