forked from svenkreiss/unicodeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 796 Bytes
/
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
from setuptools import setup
# extract version from __init__.py
with open('unicodeit/__init__.py', 'r') as f:
VERSION_LINE = [l for l in f if l.startswith('__version__')][0]
VERSION = VERSION_LINE.split('=')[1].strip()[1:-1]
setup(
name='unicodeit',
version=VERSION,
packages=[
'unicodeit',
],
license='MIT',
description='Converts LaTeX tags to unicode',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Sven Kreiss',
author_email='[email protected]',
url='https://github.com/svenkreiss/unicodeit',
install_requires=[
],
extras_require={
'dev': [
'pytest',
'pylint',
'pycodestyle',
],
},
)