forked from Jana-Mobile/layer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 784 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 784 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
from setuptools import setup
setup(
name='LayerClient',
version='0.1.10',
packages=['LayerClient'],
description='Client for the Layer Platform API',
url='https://github.com/Jana-Mobile/layer-python',
maintainer='Jana',
maintainer_email='opensource@jana.com',
license='Apache 2.0',
install_requires=[
'python-dateutil',
'requests',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)