2
2
name = spam-detection
3
3
version = 1.0.0
4
4
description = A package for spam detection using machine learning algorithms.
5
+ long_description = file: README.md
6
+ long_description_content_type = text/markdown
5
7
url = https://github.com/adamspd/spam-detection-project
6
8
author = Adams Pierre David
7
9
8
- author_website = https://adamspierredavid.com/
9
- readme = README.md
10
10
license = Apache License 2.0
11
11
classifiers =
12
12
Environment :: Console
@@ -15,7 +15,6 @@ classifiers =
15
15
Operating System :: OS Independent
16
16
Programming Language :: Python
17
17
Programming Language :: Python :: 3
18
- Programming Language :: Python :: 3 :: Only
19
18
Programming Language :: Python :: 3.8
20
19
Programming Language :: Python :: 3.9
21
20
Programming Language :: Python :: 3.10
@@ -24,7 +23,18 @@ classifiers =
24
23
25
24
[options]
26
25
include_package_data = true
27
- packages = find:
26
+ packages =
27
+ spam_detection
28
+ spam_detection.models
29
+ spam_detection.models.svm
30
+ spam_detection.models.naive_bayes
31
+ spam_detection.models.random_forest
32
+ spam_detection.training
33
+ spam_detection.classifiers
34
+ spam_detection.loading_and_processing
35
+ spam_detection.prediction
36
+ spam_detection.test_and_tuning
37
+
28
38
python_requires = >=3.8
29
39
install_requires =
30
40
scikit-learn
@@ -33,4 +43,4 @@ install_requires =
33
43
34
44
[options.package_data]
35
45
* = data/*
36
- models = models/*/*
46
+ spam_detection = models/*/*
0 commit comments