fastNLP/setup.py

25 lines
505 B
Python
Raw Normal View History

#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
reqs = f.read()
setup(
name='fastNLP',
version='1.0',
description=('fudan fastNLP '),
long_description=readme,
license=license,
author='fudanNLP',
python_requires='>=3.5',
packages=find_packages(),
install_requires=reqs.strip().split('\n'),
)