-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (31 loc) · 1.33 KB
/
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
34
35
36
from setuptools import setup, find_packages
from os import path
version = '0.8.2'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ml_recsys_tools',
version=version,
description='Tools for recommendation systems development',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DomainGroupOSS/ml-recsys-tools',
author='Domain group (Arthur Deygin)',
author_email='arthurdgn@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='recommendations machine learning',
packages=find_packages(exclude=['tests', 'examples']),
install_requires=['requests', 'numpy', 'scipy', 'pandas',
'scikit_learn', 'lightfm', 'implicit', 'psutil',
'scikit_optimize', 'gmaps', 'boto3', 'redis', 'asyncpg',
'sklearn_pandas', 'matplotlib'],
)
## rm -rf dist && python3 setup.py sdist bdist_wheel && twine upload dist/*