-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 766 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 766 Bytes
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
"""
Setup script for StandardPlot package
"""
from setuptools import setup, find_packages
setup(
name="standardplot",
version="1.0.0",
author="User",
description="Consistent plotting configuration for data analysis",
packages=["standardplot"], # Explicitly specify the package
package_dir={"standardplot": "standardplot"}, # Map package to directory
python_requires=">=3.8",
install_requires=[
"matplotlib>=3.5.0",
"seaborn>=0.11.0",
"pandas>=1.3.0",
"numpy>=1.21.0"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3",
],
)