-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 952 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 952 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
25
26
27
28
29
30
from setuptools import setup
from setuptools import find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='pandavro',
version='1.9.0',
description='The interface between Avro and pandas DataFrame',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ynqa/pandavro',
author='Makoto Ito',
author_email='un.pensiero.vano@gmail.com',
license='MIT',
packages=find_packages(exclude=['example']),
install_requires=[
# fixed versions.
'fastavro>=1.5.1,<2.0.0',
'pandas>=2.0,<3.0.0',
'numpy>=2.0,<3.0.0',
],
extras_require={
'tests': ['pytest==7.3.2', 'tox==4.6.0'],
},
# https://pandas.pydata.org/pandas-docs/version/1.1/getting_started/install.html#python-version-support
python_requires='>=3.9.0',
)