-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.42 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.42 KB
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
import os
import shutil
from codecs import open
from os import path
from setuptools import setup
from _disthelper.flatpack import flatpack
for dir in ['dist', 'mathkeyboardengine.egg-info', 'build']:
if os.path.isdir(dir):
shutil.rmtree(dir)
root_dir = path.abspath(path.dirname(__file__))
with open(path.join(root_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mathkeyboardengine',
version='1.0.0',
description='MathKeyboardEngine provides the logic for a highly customizable virtual math keyboard. It is intended for use together with any LaTeX typesetting library.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MathKeyboardEngine/MathKeyboardEngine.Python',
author='MathKeyboardEngine',
author_email='symbolinker@gmail.com',
license='0BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Operating System :: OS Independent',
],
packages=flatpack(src_folder='src', destination_namespace='mathkeyboardengine'),
)