forked from prismicio-community/python-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 681 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 681 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
import setuptools
setup(
name='prismic',
version='1.5.2',
description='Prismic.io development kit',
author='The Prismic.io Team',
author_email='contact@prismic.io',
url='http://prismic.io',
license='Apache 2',
packages=find_packages(),
test_suite='tests',
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7'
],
install_requires=[
'pyOpenSSL',
'ndg-httpsclient',
'pyasn1',
'requests >= 2.7'
]
)