-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
30 lines (26 loc) · 919 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
28
29
30
"""
Setup file for installing package.
"""
from setuptools import setup, find_packages
__version__ = '0.1.2'
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name='markovclick',
version=__version__,
description='Package for modelling clickstream data using Markov chains',
long_description=LONG_DESCRIPTION,
url='https://github.com/ismailuddin/markovclick',
download_url='https://github.com/ismailuddin/markovclick/tarball/' + __version__,
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
keywords='markov chain data science machine learning statistics clickstream',
long_description_content_type="text/markdown",
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
author='Ismail Uddin'
)