-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='mcm-python', # Name of your package (change it to match your package name)
version='0.1', # Version number of your package
packages=find_packages(), # Automatically find packages in the current directory
install_requires=[], # List of dependencies (empty for now, add them if needed)
author='Ariyan',
author_email='ariyan@mycountrymobile.com',
description='A simple Python package for My Country Mobile',
long_description=open('README.md').read(), # Read the content of README.md
long_description_content_type='text/markdown', # Indicates the type of the long description
url='https://github.com/Mycountrymobile-com/mcm-python/', # Replace with your actual GitHub repo URL
classifiers=[
'Programming Language :: Python :: 3', # Compatible with Python 3
'License :: OSI Approved :: MIT License', # License used for the package
'Operating System :: OS Independent', # Works on any OS
],
)