Skip to content

Commit

Permalink
fix(package): fix pypi warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Gaurav Mishra <[email protected]>
  • Loading branch information
GMishx committed Nov 2, 2023
1 parent 3c56981 commit 1d855a5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Safaa/setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# SPDX-FileCopyrightText: © 2023 [email protected]
#
# SPDX-License-Identifier: LGPL-2.1-only
from os import path

from setuptools import setup, find_packages

here = path.abspath(path.dirname(path.dirname(__file__)))
# fetch the long description from the README.md
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='safaa',
version='0.0.1',
Expand All @@ -15,6 +21,8 @@
to predict whether a given copyright output from the Fossology software
is a false positive or not. It is also able to remove extra
text from a copyright notice.""",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(where='src', ),
package_dir={"": "src"},
install_requires=[
Expand All @@ -25,7 +33,7 @@
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Lesser General Public License v2.1 (LGPLv2.1)',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
],
include_package_data=True,
include_dirs=[],
Expand Down

0 comments on commit 1d855a5

Please sign in to comment.