Skip to content

Commit 599ef6a

Browse files
FFroehlichdrhagen
andauthored
Fides 0.7.6 (#54)
* Add license to setuptools * bump version * fix sphinx language --------- Co-authored-by: David Hagen <david@drhagen.com>
1 parent 23ccc3e commit 599ef6a

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
#
8383
# This is also used if you do content translation via gettext catalogs.
8484
# Usually you set "language" from the command line for these cases.
85-
language = None
85+
language = 'en'
8686

8787
# List of patterns, relative to source directory, that match files and
8888
# directories to ignore when looking for source files.

fides/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.5"
1+
__version__ = "0.7.6"

setup.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,25 @@ def read(fname):
2121
long_description_content_type="text/markdown",
2222
author="Fabian Froehlich",
2323
author_email="froehlichfab@gmail.com",
24-
url="",
24+
url="https://github.com/Fides-dev/fides",
25+
license="BSD-3-Clause",
2526
packages=find_packages(exclude=["doc*", "test*"]),
2627
install_requires=['numpy>=1.19.2',
2728
'scipy>=1.5.2',
2829
'h5py>=3.5.0'],
2930
tests_require=['pytest>=5.4.2',
3031
'flake8>=3.7.2'],
3132
extras_require={},
33+
classifiers=['Development Status :: 5 - Production/Stable',
34+
'Intended Audience :: Science/Research',
35+
'Topic :: Software Development :: Libraries',
36+
'License :: OSI Approved :: BSD License',
37+
'Programming Language :: Python',
38+
'Programming Language :: Python :: 3',
39+
'Programming Language :: Python :: 3 :: Only',
40+
'Programming Language :: Python :: 3.7',
41+
'Programming Language :: Python :: 3.8',
42+
'Programming Language :: Python :: 3.9',
43+
'Programming Language :: Python :: 3.10',
44+
'Programming Language :: Python :: 3.11'],
3245
python_requires='>=3.7')

0 commit comments

Comments
 (0)