-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
55 lines (52 loc) · 1.74 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
55
'''
Author: Qiguang Chen
LastEditors: Qiguang Chen
Date: 2023-02-22 19:14:04
LastEditTime: 2023-02-22 19:43:58
Description:
'''
#!python
# -*- coding:utf-8 -*-
from __future__ import print_function
from setuptools import setup
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="simbiber",
version="0.8.1",
author="Qiguang Chen",
author_email="[email protected]",
description="a tool to fix and simplify bib automatically.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/MLNLP-World/SimBiber",
include_package_data = True,
install_requires=[
"argparse",
"bibtexparser>=1.2.0",
"tqdm"
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
'Topic :: Text Editors :: Text Processing',
'Topic :: Text Processing :: Filters',
"Topic :: Text Processing :: Markup :: LaTeX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
'Programming Language :: Python :: Implementation :: CPython',
],
entry_points={
'console_scripts': ['simbiber = Simbiber.main:main'],
},
packages=['Simbiber'],
package_dir={"Simbiber":"Simbiber"},
package_data={
"Simbiber": ["config/*.json", "parserConfig.json", "keep_keys.cfg", "data/*.bib", "out/*.bib"],
},
py_modules=['Simbiber.main', 'Simbiber.SimBiberTool', 'Simbiber.BibTool'],
)