forked from CamDavidsonPilon/lifetimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.25 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
37
38
39
40
41
42
#!/usr/bin/env python
import os
from distutils.core import setup
exec(compile(open('lifetimes/version.py').read(),
'lifetimes/version.py', 'exec'))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='Lifetimes',
version=__version__,
description='Measure customer lifetime value in Python',
author='Cam Davidson-Pilon',
author_email='cam.davidson.pilon@gmaillcom',
packages=['lifetimes', 'lifetimes.datasets'],
license="MIT",
keywords="customer lifetime value, clv, ltv, BG/NBD, pareto/NBD, frequency, recency",
url="https://github.com/CamDavidsonPilon/lifetimes",
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
],
install_requires=[
"numpy",
"scipy",
"pandas>=0.14",
],
package_data={
"lifetimes": [
"datasets/*",
"../README.md",
"../README.txt",
"../LICENSE",
"../MANIFEST.in",
]
}
)