-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 720 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open(r'README.md',"r",encoding="utf-8") as f:
long_description = f.read()
setup(
name='cnki2bib',
version='0.2.8',
author='Vopaaz',
author_email="liyifan945@gmail.com",
url="https://github.com/Vopaaz/CNKI_2_BibTeX",
description='Converting the NoteExpress file (.net) exported by CNKI to BibTeX file (.bib)',
long_description = long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click','jieba','pyperclip','pypinyin'
],
entry_points='''
[console_scripts]
cnki2bib=cnki2bibtex.cnki2bib:launch
''',
)