-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (40 loc) · 1.12 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
45
46
47
48
49
import os
from setuptools import setup, find_packages
version = '1.0.0'
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
install_requires = [
'mistune <= 1',
]
tests_require = [
'pytest >= 8',
'coverage==7.6.1',
'flake8==7.1.1',
'autopep8',
]
devtools_require = [
'twine',
'build',
]
setup(name='sdiff',
version=version,
python_requires='>=3.11',
description=('sdiff compares the structure of two markdown texts'),
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python'],
author='Keepsafe',
author_email='[email protected]',
url='https://github.com/KeepSafe/html-structure-diff/',
license='Apache',
packages=find_packages(exclude=['tests']),
package_data={},
namespace_packages=[],
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'tests': tests_require,
'devtools': devtools_require,
},
include_package_data=False)