File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
# SPDX-FileCopyrightText: © 2023 abdelrahmanjamal5565@gmail.com
2
2
#
3
3
# SPDX-License-Identifier: LGPL-2.1-only
4
+ from os import path
4
5
5
6
from setuptools import setup , find_packages
6
7
8
+ here = path .dirname (path .abspath (path .dirname (__file__ )))
9
+ # fetch the long description from the README.md
10
+ with open (path .join (here , 'README.md' ), encoding = 'utf-8' ) as f :
11
+ long_description = f .read ()
12
+
7
13
setup (
8
14
name = 'safaa' ,
9
15
version = '0.0.1' ,
15
21
to predict whether a given copyright output from the Fossology software
16
22
is a false positive or not. It is also able to remove extra
17
23
text from a copyright notice.""" ,
24
+ long_description = long_description ,
25
+ long_description_content_type = 'text/markdown' ,
18
26
packages = find_packages (where = 'src' , ),
19
27
package_dir = {"" : "src" },
20
28
install_requires = [
25
33
],
26
34
classifiers = [
27
35
'Programming Language :: Python :: 3' ,
28
- 'License :: OSI Approved :: GNU Lesser General Public License v2.1 (LGPLv2.1 )' ,
36
+ 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)' ,
29
37
],
30
38
include_package_data = True ,
31
39
include_dirs = [],
You can’t perform that action at this time.
0 commit comments