-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 769 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
required = f.read().splitlines()
setup(name='pytalite',
version='1.0.0',
description='Python/Pyspark Package for Model-agnostic Evaluation and Diagnosis.',
author='Jinghao Jia, Lun Yu',
author_email='jiajinghao1998@gmail.com, lun.yu@rallyhealth.com',
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/rallyhealth/pytalite/',
install_requires=required,
keywords='pytalite',
packages=find_packages(include=['pytalite', 'pytalite.*', 'pytalite_spark', 'pytalite_spark.*']),
)