-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (45 loc) · 1.52 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
56
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from os import path
from pathlib import Path
from setuptools import setup, find_packages
DEPENDENCIES = [
'mypy-extensions',
'pandas',
'selenium==4.0.0a1',
'typing-extensions',
'scikit-learn>=0.22',
'snakemake>=5.10',
'aiostream==0.4.1',
'h5py',
'tensorflow==2.5',
]
setup(
name='lab', # Required
description='Website fingerprinting experiment tools', # Optional
url='https://gitlab.inf.ethz.ch/jsmith/wf-tools', # Optional
# Optional long description in README.md
long_description=Path(
path.join(path.abspath(path.dirname(__file__)), 'README.md')
).read_text(),
# Automatically extract version information from git tags
use_scm_version={'root': './'},
setup_requires=['setuptools_scm'],
# This should be your name or the name of the organization which owns the
# project.
author='Jean-Pierre Smith', # Optional
# This should be a valid email address corresponding to the author listed
# above.
author_email='[email protected]', # Optional
packages=find_packages(exclude=['contrib', 'docs', 'tests']), # Required
install_requires=DEPENDENCIES,
extras_require={ # Optional
'dev': ['flake8', 'pylint', 'mypy'],
'test': ['pytest', 'pytest-timeout', 'pytest-asyncio', 'mock'],
'extras': ['scapy>=2.4.3']
}
)