-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (26 loc) · 1013 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
# -*- coding: utf-8 -*-
import os
import sys
from pip._internal.req import parse_requirements
from setuptools import find_packages, setup
from setuptools.command.install import install
VERSION = "0.1.5"
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pycorr",
version=VERSION,
description="Python package for calculating correlation amongst categorical variables",
long_description_content_type="text/markdown",
long_description=long_description,
author="Anurag Kumar Mishra",
author_email="anuragkm25@outlook.com",
url="https://github.com/MavericksDS/pycorr",
packages=find_packages(exclude=("tests", "docs")),
install_reqs=parse_requirements("requirements.txt", session="hack"),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)