-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
55 lines (53 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
from pathlib import Path
VERSION = "0.0.1"
DESCRIPTION = "NetShare"
this_directory = Path(__file__).parent
LONG_DESCRIPTION = (this_directory / "README.md").read_text()
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="netshare",
version=VERSION,
author="Yucheng Yin, Zinan Lin, Minhao Jin, Giulia Fanti, Vyas Sekar",
author_email="yyin4@andrew.cmu.edu",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"torch",
"tensorboard",
"opacus",
"tqdm",
"matplotlib",
"pandas",
"scikit-learn",
"more-itertools",
"gensim==3.8.3",
"networkx",
"notebook",
"ipyplot",
"jupyterlab",
"statsmodels",
"gdown",
"annoy==1.17.1",
"pyshark",
"scapy",
"ray",
"ray[default]",
"multiprocess",
"addict",
"config_io==0.4.0",
"flask",
], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=["python", "netshare"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"
],
)