-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 914 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
34
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = ['bibtexparser==1.1.0']
setuptools.setup(
name="zzo-bibtex-parser",
version="1.0.8",
license="WTFPL",
author="zzossig",
author_email="[email protected]",
description="bibtex importer for hugo zzo theme",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zzossig/zzo-bibtex-parser",
packages=setuptools.find_packages(),
entry_points ={
'console_scripts': [
'zzo = zzo.parser:main'
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=install_requires,
)
# python setup.py sdist
# pip install twine
# twine upload dist/*