-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.75 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (32 loc) · 1.75 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'pyadomd', # How you named your package folder (MyLib)
packages = ['pyadomd'], # Chose the same as "name"
version = '0.1.1', # Start with a small number and increase it with every change you make
license='Apache License 2.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'A pythonic approach to query SSAS data models', # Give a short description about your library
long_description=long_description,
long_description_content_type='text/markdown',
author = 'SCOUT', # Type in your name
author_email = 'andboy@gmail.com', # Type in your E-Mail
url = 'https://github.com/Andboye/Pyadomd', # Provide either the link to your github or to your website
download_url = 'https://github.com/Andboye/Pyadomd/archive/v0.0.9.tar.gz',
keywords = ['adomd', 'ssas', 'ssas-tabular', 'ssasadomd', 'aas', 'PowerBI'], # Keywords that define your package best
install_requires=[
'pythonnet'
],
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Database',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
)