-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 720 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 720 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
# -*- 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'))
)