-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
43 lines (41 loc) · 1.49 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
39
40
41
42
43
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='apiql',
version='0.12.6',
test_suite='tests',
author="Artur Karazniewicz",
author_email="karaznie+pip@protonmail.com",
description="A simple API Query Language",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/karaznie/apiql",
packages=setuptools.find_packages(),
package_data={'': ['*.txt', '*.md', '*.tokens', '*.interp']},
install_requires=[
'funcy',
'whatever',
'antlr4-python3-runtime',
'python-dateutil'
],
python_requires='>=3.5',
keywords='api dynamic query flask bottle django sqlalchemy',
project_urls={
"Homepage": "https://github.com/akarazniewicz/apiql",
"Bug Tracker": "https://github.com/akarazniewicz/apiql/issues",
"Documentation": "https://github.com/akarazniewicz/apiql",
"Source Code": "https://github.com/akarazniewicz/apiql",
},
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Environment :: Web Environment"
],
)