forked from prismicio-community/python-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1022 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
import setuptools
import prismic
with open("README.md", encoding="utf8") as fh:
long_description = fh.read()
setup(
name='prismic-httpx',
version=prismic.__version__,
description='Asyncio fork of the Python client for prismic.io',
long_description=long_description,
long_description_content_type="text/markdown",
author='Rémi DEBETTE',
author_email='[email protected]',
url='https://github.com/remidebette/prismic-httpx',
license='Apache 2',
packages=find_packages(),
test_suite='tests',
classifiers=[
"Development Status :: 4 - Beta",
'Operating System :: OS Independent',
'Intended Audience :: Developers',
"Environment :: Web Environment",
"Framework :: AsyncIO",
'Programming Language :: Python :: 3.6'
],
install_requires=[
'httpx',
'aiocache'
],
python_requires='>=3.6'
)