-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (30 loc) · 966 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
28
29
30
31
32
33
from setuptools import setup
import os
NAME = "weightedcalcs"
HERE = os.path.abspath(os.path.dirname(__file__))
version_ns = {}
with open(os.path.join(HERE, NAME, '__version__.py')) as f:
exec(f.read(), {}, version_ns)
setup(
name=NAME,
version=version_ns['__version__'],
description="Pandas-based utility to calculate weighted means, medians, distributions, standard deviations, and more.",
url="http://github.com/jsvine/weightedcalcs",
author="Jeremy Singer-Vine",
author_email="[email protected]",
license="MIT",
packages=[
NAME
],
install_requires=[
"pandas>=2.0"
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)