setup.py 418 Bytes
Newer Older
luopl's avatar
init  
luopl committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup, find_packages
from setuptools import setup, find_packages
import os

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt'), 'r', encoding='utf-8') as f:
    requirements = f.read().splitlines()

setup(
    name='ovis',
    version='1.6.0',
    packages=find_packages(where='.', exclude=('tests', 'docs')),
    install_requires=requirements
)