[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/UNILORN/python-optimcios/master/setup.py [Back]  [Original]

# -*- coding: utf-8 -*-

# Learn more: https://github.com/kennethreitz/setup.py

from setuptools import setup, find_packages
import sys

sys.path.append('./python_optimcios')
sys.path.append('./test')

with open('README.md') as f:
    readme = f.read()

with open('LICENSE') as f:
    license = f.read()

setup(
    name='python_optimcios',
    version='0.1.1',
    description='Sample package for Python-Guide.org',
    long_description=readme,
    author='Yusuke Aoki',
    author_email='yuoyun6427.yuniron.komoron@gmail.com',
    install_requires=['numpy>=1.9.0', 'websocket-client'],
    url='https://github.com/UNILORN/python-optimcios',
    license=license,
    packages=find_packages(exclude=('tests', 'docs'))
)

Web Proxy Viewer  |  New URL  |  Original Page