-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.32 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (40 loc) · 1.32 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
37
38
39
40
41
42
43
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
__tag__ = ""
__build__ = 0
__version__ = "{}".format(__tag__)
setuptools.setup(
name="binalyzer",
version=__version__,
author="Denis Vasilìk",
author_email="contact@denisvasilik.com",
url="https://binalyzer.denisvasilik.com",
project_urls={
"Bug Tracker": "https://github.com/denisvasilik/binalyzer/issues/",
"Documentation": "https://binalyzer.readthedocs.io/en/latest/",
"Source Code": "https://github.com/denisvasilik/binalyzer/",
},
description="Binary Data Analyzer",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
],
dependency_links=[],
package_dir={"binalyzer": "binalyzer"},
package_data={},
data_files=[("", ["CHANGELOG.md"])],
setup_requires=[],
install_requires=[
"binalyzer-core==1.0.5",
"binalyzer-cli==1.0.0",
"binalyzer-data_provider==1.0.0",
"binalyzer-template-provider==1.0.2",
"binalyzer-rest==1.0.0",
"binalyzer-wasm==1.0.0"
],
entry_points={"console_scripts": ["binalyzer = binalyzer.cli:main"]},
)