-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (34 loc) · 1.09 KB
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
from setuptools import setup, find_packages
setup(
name="fluxture",
description="A crawling framework for blockchains and peer-to-peer systems",
url="https://github.com/trailofbits/fluxture",
author="Trail of Bits",
version="0.0.1",
packages=find_packages(exclude=["test"]),
python_requires=">=3.10",
install_requires=[
"fastkml~=0.11",
"geoip2~=4.1.0",
"graphviz~=0.14.1",
"great-circle-calculator~=1.1.0",
"keyring~=21.8.0",
"lxml~=4.9.1",
"networkx~=2.4",
"numpy>=1.19.4",
"shapely~=1.8.0",
"shodan~=1.24.0",
"six>=1.5",
"tqdm>=4.48.0",
],
extras_require={"dev": ["flake8", "pytest", "twine"]},
entry_points={"console_scripts": ["fluxture = fluxture.__main__:main"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
],
)