-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.26 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
from setuptools import setup, find_packages
def long_description():
with open('README.md') as fh:
desc = fh.read()
desc = desc.replace('documentation/docs/',
'https://raw.githubusercontent.com/fkie-cad/woodblock/master/documentation/docs/')
return desc
setup(
name='woodblock',
version='0.1.7',
license='MIT',
author='Fraunhofer FKIE',
author_email='[email protected]',
url='https://github.com/fkie-cad/woodblock/',
packages=find_packages(),
install_requires=[
'click',
'multimethod',
'numpy',
],
entry_points={
'console_scripts': [
'woodblock = woodblock.__main__:main'
]
},
description='A framework to generate file carving test data',
long_description=long_description(),
long_description_content_type='text/markdown',
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
project_urls={
'Documentation': 'https://fkie-cad.github.io/woodblock/',
'Source': 'https://github.com/fkie-cad/woodblock/',
'Tracker': 'https://github.com/fkie-cad/woodblock/issues',
},
python_requires='>3.6',
)