-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 945 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
from setuptools import setup
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="e2L",
version='0.1.0',
license='MIT',
author="Raphaël Nussbaumer",
author_email="<rafnuss@gmail.com>",
description='Generate custom PDF checklists with eBird occurrence data.',
long_description='eBirdToLaTex Checklist Generator is a Python module which generates a customisable bird checklist based on a specific dataset downloaded from eBird.',
url="https://github.com/Zoziologie/ebird2latex",
download_url="https://github.com/Zoziologie/ebird2latex/archive/refs/tags/v0.0.3.tar.gz",
py_modules=["e2L"],
install_requires=['requests', 're', 'lxml'],
keywords=['python', 'eBird', 'LaTeX'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)