-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathsetup.py
41 lines (39 loc) · 1.68 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
from setuptools import setup
from setuptools import find_namespace_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ecommercetools',
packages=find_namespace_packages(include=['ecommercetools.*']),
version='0.42.8',
license='MIT',
description='EcommerceTools is a data science toolkit for ecommerce, marketing science, and Python SEO.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Matt Clarke',
author_email='[email protected]',
url='https://github.com/practical-data-science/ecommercetools',
download_url='https://github.com/practical-data-science/ecommercetools/archive/master.zip',
keywords=['ecommerce', 'marketing', 'seo', 'seo testing', 'customers', 'products', 'rfm', 'abc',
'operations', 'analytics', 'python', 'python seo', 'pandas', 'nlp', 'causal impact'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
install_requires=['pandas',
'gapandas',
'sklearn',
'requests',
'requests_html',
'httplib2 >= 0.15.0',
'lifetimes',
'transformers',
'torch',
'pycausalimpact',
'numpy']
)