-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 964 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='academic-ads-bibtex',
version='0.2.3',
packages=['academic_ads_bibtex'],
scripts=['bin/academic_ads_bibtex'],
url='https://github.com/astrochun/academic-ads-bibtex',
license='GNU GPLv3',
author='Chun Ly',
author_email='[email protected]',
description='Construct a proper BibTeX file to use with the Hugo Academic theme from ADS export',
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
package_data={'': ['database/bibtex_journals.db']},
python_requires='>=3.7',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
]
)