-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 1.15 KB
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
27
28
29
30
31
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Dec 6 11:45:01 2023
@author: karinmorandell
"""
from setuptools import setup, find_packages
setup(
name='mylib', # Replace with your package's name
version='231206', # The initial release version
author='Karin Morandell', # Your name or your organization’s name
author_email='karinmorandell.pro@gmail.com', # Your email
description='My Python code', # Short description
long_description=open('README.md').read(), # Long description read from the readme file
long_description_content_type='text/markdown', # Long description content type
packages=find_packages(exclude=['tests*']), # List of all python modules to be installed
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Minimum version requirement of the package
install_requires=[
'pandas', # For data manipulation and analysis
'numpy', # for numerical operations
'importlib',
'Pillow>=8.0', # Python Imaging Library (PIL) Fork for image processing
]
)