-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
from __future__ import print_function, absolute_import, division | ||
from setuptools import setup, find_packages | ||
from __future__ import absolute_import, division, print_function | ||
Check warning Code scanning / Pylintpython3 (reported by Codacy) Missing module docstring Warning
Missing module docstring
Check warning Code scanning / Pylintpython3 (reported by Codacy) Django was not configured. For more information run pylint --load-plugins=pylint_django --help-msg=django-not-configured Warning
Django was not configured. For more information run pylint --load-plugins=pylint_django --help-msg=django-not-configured
Check warning Code scanning / Pylint (reported by Codacy) Missing module docstring Warning
Missing module docstring
|
||
|
||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='petl', | ||
author='Alistair Miles', | ||
author_email='[email protected]', | ||
maintainer="Juarez Rudsatz", | ||
maintainer_email="[email protected]", | ||
package_dir={'': '.'}, | ||
packages=find_packages('.'), | ||
scripts=['bin/petl'], | ||
url='https://github.com/petl-developers/petl', | ||
license='MIT License', | ||
description='A Python package for extracting, transforming and loading ' | ||
'tables of data.', | ||
long_description=open('README.txt').read(), | ||
long_description=open('README.txt', encoding="utf-8").read(), | ||
Check warning Code scanning / Pylintpython3 (reported by Codacy) Consider using 'with' for resource-allocating operations Warning
Consider using 'with' for resource-allocating operations
|
||
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', | ||
setup_requires=["setuptools>18.0", "setuptools-scm>1.5.4"], | ||
extras_require={ | ||
|
@@ -49,6 +51,7 @@ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
] | ||
) |