-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 967 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
from setuptools import setup, find_packages
__PKG_NAME__ = 'pskit'
__PKG_VERSION__ = '0.0.5'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name=__PKG_NAME__,
version=__PKG_VERSION__,
description="Toolkit for an easy use of pandas, sklearn and popular ml libraries",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/trantrikien239/pandas-sklearn-toolkit",
author="Kien Tran",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
install_requires=required
)