-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 759 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
setuptools.setup(
name='passim',
version='2.0.1',
author='David A. Smith',
author_email='dasmiq@gmail.com',
description='Detecting and analyzing text reuse',
url='https://github.com/dasmiq/passim',
packages=setuptools.find_packages(include=['passim']),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
install_requires=[
'pyspark==4.0.1',
'graphframes-py==0.9.3',
'intervaltree'
],
scripts=['bin/seriatim', 'bin/passim', 'bin/passim.cmd', 'bin/seriatim.cmd'],
data_files=[('share', ['share/submit-seriatim.py']),
('conf', ['conf/log4j2.properties'])],
python_requires='>=3.9',
)