-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
33 lines (29 loc) · 1.13 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
from setuptools import setup, find_packages
from os import path
cd = path.abspath(path.dirname(__file__))
with open(path.join(cd,'README.md'), encoding='utf-8') as f:
readme_description = f.read()
setup(
name='crm-rfm-modeling',
version='1.0.4',
packages=find_packages(),
license='GNU General Public License',
description='RFM Modeling Package for modeling Consumer behavior.',
long_description=readme_description,
long_description_content_type='text/markdown',
url='https://github.com/zark-stark12/crm-rfm-modeling',
author='Juan Zarco',
python_requires='>=3.5',
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=['pandas>=0.25.2',
'numpy>=1.17.3']
)