-
Notifications
You must be signed in to change notification settings - Fork 92
/
setup.py
executable file
·43 lines (32 loc) · 954 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
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /usr/bin/env python3
from setuptools import setup
url = "https://github.com/chuanconggao/PrefixSpan-py"
version = "0.5.2"
setup(
name="prefixspan",
packages=["prefixspan"],
scripts=["prefixspan-cli"],
include_package_data=True,
url=url,
version=version,
download_url="{}/tarball/{}".format(url, version),
license="MIT",
author="Chuancong Gao",
author_email="[email protected]",
description="PrefixSpan, BIDE, and FEAT in Python 3",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords=[
"data-mining",
"pattern-mining"
],
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
],
python_requires=">= 3",
install_requires=[
line.strip() for line in open("requirements.txt")
]
)