Skip to content

Commit

Permalink
Merge pull request #746 from strictdoc-project/bump-version
Browse files Browse the repository at this point in the history
Bump version to 0.0.27
  • Loading branch information
stanislaw authored Nov 27, 2022
2 parents 05ecea0 + 59ec54c commit ce7e2e3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# -*- coding: utf-8 -*-
import os

from setuptools import find_packages, setup

import strictdoc

package_data = {
"": ["requirements.txt", "requirements.development.txt"],
# It looks like the package data in setup.py does not support globbing
# (see pypa/setuptools#1806, https://github.com/pypa/setuptools/issues/1806)
# Doing the globbing manually for now.
Expand All @@ -22,11 +20,6 @@
],
}

data_files = [
"requirements.txt",
"requirements.development.txt",
]

with open("requirements.txt") as fp:
REQUIREMENTS = fp.read()

Expand Down Expand Up @@ -64,13 +57,11 @@
),
"package_data": package_data,
# 'package_dir': {"": "strictdoc"},
"data_files": data_files,
"install_requires": REQUIREMENTS,
"extras_require": REQUIREMENTS_DEVELOPMENT,
"setup_requires": REQUIREMENTS_SETUP,
"entry_points": entry_points,
"python_requires": ">=3.6.2,<4.0.0",
}


setup(**setup_kwargs)
2 changes: 1 addition & 1 deletion strictdoc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os

__version__ = "0.0.26"
__version__ = "0.0.27"

STRICTDOC_ROOT_PATH = os.path.join(os.path.dirname(__file__), "..")

0 comments on commit ce7e2e3

Please sign in to comment.