Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,9 @@ dmypy.json
*.xls
demo_*.csv
test_*.csv
sample_*.csv
sample_*.csv

# Build artifacts
dist/
build/
*.egg-info/
61 changes: 30 additions & 31 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,56 +3,55 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

try:
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
except FileNotFoundError:
requirements = [
"pandas>=1.5.0",
"chardet>=4.0.0",
"python-dateutil>=2.8.0",
"numpy>=1.21.0",
"openpyxl>=3.0.0",
"pyarrow>=7.0.0",
"requests>=2.25.0",
"psycopg2-binary>=2.9.0",
"mysql-connector-python>=8.0.0",
]

setup(
name="dataprocessing",
name="dataprocesslite",
version="0.1.0",
author="Your Name",
author_email="your.email@example.com",
author="Conor Reidy",
author_email="conor@example.com",
description="A user-friendly Python package for working with CSV data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/dataprocessing",
url="https://github.com/conorzen/dataprocess",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
install_requires=[
"pandas>=1.5.0",
"chardet>=4.0.0",
"python-dateutil>=2.8.0",
"numpy>=1.21.0",
"openpyxl>=3.0.0",
"pyarrow>=7.0.0",
"requests>=2.25.0",
"psycopg2-binary>=2.9.0",
"mysql-connector-python>=8.0.0",
],
install_requires=requirements,
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=1.0.0",
],
"fast": [
"polars>=0.19.0",
],
"fast": ["polars>=0.19.0"],
},
keywords="csv, data, pandas, user-friendly, data-analysis",
keywords="csv, data, processing, pandas, sql, live-data",
project_urls={
"Bug Reports": "https://github.com/yourusername/dataprocessing/issues",
"Source": "https://github.com/yourusername/dataprocessing",
"Documentation": "https://github.com/yourusername/dataprocessing#readme",
"Bug Reports": "https://github.com/conorzen/dataprocess/issues",
"Source": "https://github.com/conorzen/dataprocess",
"Documentation": "https://github.com/conorzen/dataprocess#readme",
},
)