forked from OpenMined/SyferText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.24 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
from setuptools import setup
from setuptools import find_packages
import os
# Utility function to read README.md file for long description
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="syfertext",
author="Alan Aboudib",
author_email="[email protected]",
description="A privacy preserving NLP framework",
url="https://github.com/OpenMined/SyferText",
keywords="nlp smpc secure multi-party computation federated learning deep learning artificial intelligence secure model sharin natural language processing spacy spaCy",
classifier=["Programming Language :: Python :: 3.7", "Operating System :: OS Independent"],
license="Apache-2.0",
version="0.0.1",
packages=find_packages(),
long_description=read("README.md"),
long_description_content_type="text/markdown",
install_requires=["tqdm==4.36.1", "mmh3==2.5.1", "syft==0.2.8", "requests==2.22.0",],
extras_require={
"test": [
"black>=19.10b0",
"pytest>=5.3.5",
"pytest-black>=0.3.8",
"jupyter>=1.0.0",
"papermill>=1.2.1",
]
},
classifiers=["Programming Language :: Python :: 3", "Operating System :: OS Independent"],
)