Skip to content

Commit

Permalink
Fides 0.7.6 (#54)
Browse files Browse the repository at this point in the history
* Add license to setuptools

* bump version

* fix sphinx language

---------

Co-authored-by: David Hagen <[email protected]>
  • Loading branch information
FFroehlich and drhagen authored Apr 12, 2023
1 parent 23ccc3e commit 599ef6a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = 'en'

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down
2 changes: 1 addition & 1 deletion fides/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.5"
__version__ = "0.7.6"
15 changes: 14 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,25 @@ def read(fname):
long_description_content_type="text/markdown",
author="Fabian Froehlich",
author_email="[email protected]",
url="",
url="https://github.com/Fides-dev/fides",
license="BSD-3-Clause",
packages=find_packages(exclude=["doc*", "test*"]),
install_requires=['numpy>=1.19.2',
'scipy>=1.5.2',
'h5py>=3.5.0'],
tests_require=['pytest>=5.4.2',
'flake8>=3.7.2'],
extras_require={},
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'],
python_requires='>=3.7')

0 comments on commit 599ef6a

Please sign in to comment.