-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
51 lines (48 loc) · 1.79 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'''.
@@@@@@@@@@
@@@@..........@@@@
@@@ . @@@
@@. . . @@
@ . _ . . @
@........| |...................@ *********************************************
@ . | | _____ . @
@ . | | | __ \ . @ La Data Web
@ . | |__| | | |. *** @
@........|____| | | |...* *.@ Copyright © 2022 Ignacio Barrau
@ . . | |__| |. * *@
@ . . |_____/ . * *@ *********************************************
@ . . . * *@
@ . . . *******@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
'''
from setuptools import find_packages, setup
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
setup(
name='SimplePBI',
packages=find_packages(),
version='1.0.1',
project_urls={
'Documentation': 'https://docs.microsoft.com/en-us/rest/api/power-bi/',
'Say Thanks!': 'https://www.ladataweb.com.ar/contacto.html',
'Source': 'https://github.com/ladataweb/SimplePBI',
'Tracker': 'https://github.com/ladataweb/SimplePBI/issues'
},
download_url='',
url='',
description='Simplify usage of Power Bi Rest API',
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description_content_type="text/markdown",
author='Ignacio Barrau <igna_barrau@hotmail.com>, Martin Zurita <martinzurita1@gmail.com>',
license='MIT',
classifiers=classifiers,
install_requires=[
'requests',
'pandas',
'requests-toolbelt'
],
keywords=['Power BI Rest API', 'Power BI', 'PBI', 'LaDataWeb', 'Azure', 'Data', 'Python', 'Fabric', 'Microsoft Fabric', 'Fabric Rest API']
)