-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.32 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
"""Setup tooling for `zoia`."""
import setuptools
import versioneer
with open('README.md') as fp:
long_description = fp.read()
setuptools.setup(
name='zoia',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Command line tool to manage references.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/joe-antognini/zoia',
author='Joseph Antognini',
author_email='joe.antognini@gmail.com',
license='MIT',
packages=setuptools.find_packages(),
install_requires=[
'bibtexparser>=1.2.0',
'click>=7.1.2',
'halo>=0.0.30',
'isbnlib>=3.10.3',
'pdfminer.six>=20200726',
'pyyaml>=5.3.1',
'requests>=2.24.0',
'sqlalchemy>=1.3.19',
],
entry_points={
'console_scripts': ['zoia=zoia.cli:zoia'],
},
include_package_data=True,
setup_requires=['pytest-runner'],
test_requires=['pytest'],
python_requires='>=3.8',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
],
)