22 lines
862 B
Python
22 lines
862 B
Python
import os
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='goulag_sort', # Nome do seu pacote
|
|
version='0.1.0', # Versão inicial do seu pacote
|
|
packages=find_packages(), # Agora encontra o pacote 'goulag_sort' na raiz
|
|
# Removidos package_dir e where='src'
|
|
description='An intentionally inefficient sorting algorithm library.',
|
|
long_description=open('README.md').read() if os.path.exists('README.md') else '',
|
|
long_description_content_type='text/markdown',
|
|
author='Gustavo Henrique Santos Souza de Miranda',
|
|
author_email='gustavohssmiranda@gmail.com',
|
|
url='https://git.gustavomiranda.xyz/GHMiranda/GoulagSort',
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
python_requires='>=3.10',
|
|
) |