-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (37 loc) · 1.4 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, find_packages
from pathlib import Path
import subprocess
import os
subprocess.run(['pip', 'install', 'pbr'])
import pbr.version
version_info = pbr.version.VersionInfo('CalculusOCR')
this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text(encoding='utf-8')
setup(
name='CalculusOCR',
version= version_info.release_string(),
description=' CalculusOCR: A Vision Transformer that can perform optical character recognition on handwritten calculus expressions and outputs LaTeX code, Sympy equation and solution.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jignas Paturu',
author_email='[email protected]',
url='https://github.com/JignasP/CalculusOCR/',
license='MIT',
keywords=[
'artificial intelligence',
'image to text',
'calculus'
],
packages=find_packages(),
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta ',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Text Processing :: Markup :: LaTeX',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
)