forked from shunyeka/jQuery-QueryBuilder-Python-Evaluator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1015 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 1015 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
31
32
33
34
35
import setuptools
import unittest
def unittest_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests', pattern='test_*.py')
return test_suite
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="jqqb",
version="1.5.0",
author="Connecting Food",
author_email="developers@connecting-food.com",
description="Python parsing, evaluation and inspection tools "
"for jQuery-QueryBuilder rules",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Connecting-Food/jQueryQueryBuilder",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'pytimeparse~=1.1.8'
],
python_requires='>=3.6',
test_suite='setup.unittest_test_suite',
)