Skip to content

Commit 0c9b39a

Browse files
Added requirement for pandas
1 parent cf95c76 commit 0c9b39a

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ makepkg -si
3535
## Usage
3636

3737
```
38-
ip2location-csv-converter [-range | -cidr | -hex] [-replace | -append] INPUT_FILE OUTPUT_FILE
38+
ip2location-csv-converter [-range | -cidr | -hex | -parquet] [-replace | -append] [database_type] INPUT_FILE OUTPUT_FILE
3939
```
4040

4141
#### Parameters

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="ip2location-python-csv-converter",
13-
version="1.3.0",
13+
version="1.3.1",
1414
description="Python script to converts IP2Location CSV database into IP range or CIDR format.",
1515
long_description_content_type="text/markdown",
1616
long_description=long_description,
@@ -28,6 +28,9 @@
2828
'console_scripts': ['ip2location-csv-converter=ip2location_csv_converter.commandline:main'],
2929
},
3030
packages=setuptools.find_packages(),
31+
install_requires=[
32+
"pandas>=1.0.0"
33+
],
3134
classifiers=[
3235
"Development Status :: 5 - Production/Stable",
3336
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)