-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.22 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.22 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
from setuptools import setup, find_packages
import pyssdeep
with open('README.rst', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst', 'r', encoding='utf-8') as history_file:
history = history_file.read()
setup(
name=pyssdeep.__name__,
version=pyssdeep.__version__,
description='The python-wrapper for ssdeep',
long_description=readme + '\n\n' + history,
author=pyssdeep.__author__,
author_email=pyssdeep.__author_email__,
url='https://github.com/drobotun/pyssdeep/',
zip_safe=False,
license=pyssdeep.__license__,
keywords='ssdeep, fuzzy-hash, python',
project_urls={
'Documentation': 'https://pyssdeep.readthedocs.io/',
'Source': 'https://github.com/drobotun/pyssdeep/'
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.8',
],
test_suite="tests",
packages=find_packages(),
install_requires=[
'six==1.16.0'
],
include_package_data=True,
data_files=[('test_file', ['test_file/test_file.txt'])],
)