-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='your_package_name', # Replace with your package name
version='0.1', # Package version
author='Your Name', # Author name
author_email='[email protected]', # Author email
description='Description of your package', # Short description
long_description='Long description of your package', # Full description
long_description_content_type='text/markdown', # Description content type
url='https://github.com/your_username/your_package_name', # URL to your package repository
packages=find_packages(), # Automatically find all packages in the directory
install_requires=[ # List of dependencies required to run your package
# Add more dependencies as needed
],
classifiers=[ # Classifiers to categorize your package (optional)
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
# Add more classifiers as needed
],
)