File size: 608 Bytes
8db7949
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup, find_packages

setup(
    name='Trinoculars',
    version='1.0.0',
    packages=find_packages(),
    url='https://github.com/CoffeBank/Trinoculars',
    license=open("LICENSE.md", "r", encoding="utf-8").read(),
    author='',
    author_email='',
    description='An improved version of the Binoculars language model text detector for ru datasets.',
    long_description=open("README.md", "r", encoding="utf-8").read(),
    long_description_content_type="text/markdown",
    install_requires=open("requirements.txt", "r", encoding="utf-8").read().splitlines(),
)