-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gaurav Mishra <[email protected]>
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.dirname(path.abspath(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', | ||
|
@@ -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=[ | ||
|
@@ -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=[], | ||
|