-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 736 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='open_dev_aron',
version='0.1.0',
author='Seu Nome',
author_email='felipe.aron@icloud.com',
description='Uma breve descrição do seu pacote.',
python_requires='>=3.6, <4',
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
scripts=['scripts/hello.py'] # Certifique-se de que o caminho está correto
)