Adding upstream version 1.4.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e344d0b8ae
commit
1ea3e103a7
77 changed files with 5760 additions and 0 deletions
28
setup.py
Normal file
28
setup.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name='dsc_datatool',
|
||||
version='1.4.2',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
python_requires='>=3.5.1',
|
||||
install_requires=[
|
||||
'maxminddb>=1.2.0',
|
||||
'PyYAML>=3.11',
|
||||
],
|
||||
extras_require={
|
||||
'dev': [
|
||||
'pytest>=4',
|
||||
'coverage',
|
||||
'watchdog',
|
||||
],
|
||||
},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'dsc-datatool = dsc_datatool:main',
|
||||
],
|
||||
},
|
||||
scripts=[
|
||||
],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue