-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 1004 Bytes
/
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
25
26
27
from setuptools import setup
with open('README.md', encoding="utf-8") as f:
long_description = f.read()
setup(
name = 'CENIPA_API',
version = '0.0.7',
description = 'Coleta e análise dos últimos 10 anos de ocorrencias registradas pelo CENIPA',
long_description = long_description,
long_description_content_type='text/markdown',
author = 'Alunos Ciência de Dados PUC-SP',
packages = ['CENIPA_API'],
license= 'MIT',
keywords = ['API', 'acidentes', 'CENIPA', 'analise de dados'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Topic :: Database',
'Topic :: Scientific/Engineering :: Information Analysis'
],
url = 'https://github.com/brunabellini/CENIPA_API'
)