forked from ThiagoPanini/pandora
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.44 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.44 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
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
Arquivo de configuração da biblioteca.
Aqui são consolidadas todas as informações refentes ao pacote
publicado e disponibilizado no PyPI
"""
# Importando bibliotecas
from setuptools import setup, find_packages
# Lendo README.md
with open("README.md", "r", encoding='utf-8') as f:
__long_description__ = f.read()
# Criando setup
setup(
name='package-name',
version='0.0.1',
author='Thiago Panini',
author_email='panini.development@gmail.com',
packages=find_packages(),
install_requires=[],
license='MIT',
description='Insira aqui a descrição do pacote a ser riado',
long_description=__long_description__,
long_description_content_type="text/markdown",
url='https://github.com/ThiagoPanini/package-name',
keywords='Cloud, AWS, Python, Spark, pyspark',
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Natural Language :: Portuguese (Brazilian)",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules"
],
python_requires=">=3.0.0"
)