-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (71 loc) · 3.1 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*- coding: utf-8 -*-
# setup.py for cubedpandas
from setuptools import setup
from setuptools import find_packages
from cubedpandas import VERSION as CUBEDPANDAS_VERSION
# ...to run the build and deploy process to pypi.org manually:
# 1. delete folder 'build'
# 1. empty folder 'dist'
# 2. python3 setup.py sdist bdist_wheel # note: Wheel need to be installed: pip install wheel
# 3. twine upload -r pypi dist/* # note: Twine need to be installed: pip install twine
# ... via Github actions
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
VERSION = CUBEDPANDAS_VERSION
DESCRIPTION = "CubedPandas - Filter faster, analyze smarter – your DataFrames deserve it!"
LONG_DESCRIPTION = """
CubedPandas offer a new ***easy, fast & fun approach to navigate and analyze Pandas dataframes***.
CubedPandas is inspired by the powerful concepts of OLAP (Online Analytical Processing) and MDX (Multi-Dimensional
Expressions) and aims to bring the comfort and power of OLAP to Pandas dataframes.
For novice users, CubedPandas can be a great help to get started with Pandas, as it hides some
of the complexity and verbosity of Pandas dataframes. For experienced users, CubedPandas
can be a productivity booster, as it allows you to write more compact, readable and
maintainable code.
"""
setup(
name="cubedpandas",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=[
"Topic :: Utilities",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
],
author="Thomas Zeutschler",
keywords=['pandas', 'analysis', 'database', 'olap', 'planning', 'reporting', 'forecasting',
'multidimensional', 'cube', ],
author_email="[email protected]",
url="https://github.com/Zeutschler/cubedpandas",
license='MIT',
platforms=['any'],
zip_safe=True,
python_requires='>= 3.10',
install_requires=[
'numpy',
'pandas',
'python-dateutil',
'datespan',
],
test_suite="cubedpandas.tests",
packages=['cubedpandas', 'cubedpandas.context', 'cubedpandas.schema'], # , 'tests'],
project_urls={
'Homepage': 'https://zeutschler.github.io/cubedpandas/',
'Documentation': 'https://zeutschler.github.io/cubedpandas/',
'GitHub': 'https://github.com/Zeutschler/cubedpandas',
},
)