forked from ynqa/pandavro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.02 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
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.8.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='[email protected]',
license='MIT',
packages=find_packages(exclude=['example']),
install_requires=[
# fixed versions.
'fastavro>=1.5.1,<2.0.0',
'pandas>=1.1',
# https://pandas.pydata.org/pandas-docs/version/1.1/getting_started/install.html#dependencies
'numpy>=1.15.4',
],
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.7.0',
)