forked from MapleleavesCX/SS_SPAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (28 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name='SS_SPAM',
version='0.1.0',
author='MapleleavesCX / Rex / sdushushu / Taorich',
author_email='[email protected]',
description='A privacy preserving spam filter based on SecretFlow',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/MapleleavesCX/SS_SPAM/',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: None',
'Operating System :: POSIX :: Linux',
],
python_requires='>=3.10',
install_requires=[
'secretflow==1.5.0b0',
'scikit-learn==1.5.1',
'nltk==3.8.1',
'pandas==2.2.2',
],
)