-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 833 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 833 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
25
26
27
28
29
30
from setuptools import setup, find_packages
PACKAGE = "robula-plus"
NAME = "robula-plus"
DESCRIPTION = "Python implementation of algorithm Robula+ for generate robust XPath"
AUTHOR = "Oleksandr Korovii"
AUTHOR_EMAIL = "zeusfsx@gmail.com"
URL = "https://github.com/ZeusFSX/robula-plus"
VERSION = '0.0.1'
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license='BSD',
packages=find_packages(exclude=["tests.*", "tests"]),
install_requires=[
"lxml~=5.4"
],
python_requires='>=3.12',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.12',
],
zip_safe=False)