forked from paletteml/mlsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 800 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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='mlsync',
version='0.1.3',
description='Sync your machine learning data to your favorite productivity tools',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/paletteml/mlsync',
author='PaletteML Team',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(include=['mlsync', 'mlsync.*']),
install_requires=[
'inquirer>=2.9.2',
'notion_client>=1.0.0',
'python-dotenv>=0.20.0',
'PyYAML>=6.0',
'requests>=2.22.0',
],
entry_points = {
'console_scripts': ['mlsync=mlsync.command_line:main'],
}
)