forked from globocom/GloboNetworkAPI-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·21 lines (19 loc) · 672 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·21 lines (19 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = __import__('networkapiclient').VERSION
setup(
name='GloboNetworkAPI',
version=version,
description='GloboNetworkAPI Client Python',
long_description='Python implementation of a client library for GloboNetworkAPI',
keywords='network GloboNetwork GloboNetworkAPI',
author='Marcus Vinicius Gonçalves Cesário',
author_email='marcus.vinicius@corp.globo.com',
url='https://github.com/globocom/GloboNetworkAPI-client-python',
license='LICENSE.txt',
install_requires=[
'requests==2.10.0',
],
packages=find_packages(),
)