-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·54 lines (49 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
"""`bibla` is a minimalistic linter (style checker) for BibLaTeX files. This is a fork of the original `bibl` from Arne Van Den Kerchove, by Tristan Cuvelier.
More information about bibl at https://gitlab.com/arne.vandenkerchove/bibla
"""
from setuptools import setup
with open("README.md", 'r') as readme:
long_description = readme.read()
from bibla import __version__
setup(
name='bibla',
version=__version__,
description='A minimalistic bibLaTeX linter by Tristan Cuvelier.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MrClassicT/bibla',
author='Tristan Cuvelier',
author_email='tristan.cuvelier@student.hogent.be',
packages=['bibla', 'bibla.rules'],
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
install_requires=[
'click>=7',
'fuzzywuzzy>=0.10',
'markdown-table',
'pybtex==0.23.0',
'pyyaml>=5',
'unidecode>=1,<2',
'setuptools>= 69.0.0'
],
extras_require={
'dev': [
'anybadge',
'markdown',
'check-manifest',
'twine',
]
},
entry_points={
"console_scripts": ["bibla=bibla.__main__:cli"],
},
include_package_data=True,
package_data={'': ['bibla.yml']}
)