-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (30 loc) · 1.15 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
from setuptools import setup, find_packages
with open("README.md", 'r') as fr:
description = fr.read()
setup(
name='pyECLAT',
version='1.0.1',
url='/~https://github.com/jeffrichardchemistry/pyECLAT',
license='BSD License',
author='Jefferson Richard',
author_email='jrichardquimica@gmail.com',
keywords='Data Science ECLAT Association statistic Artificial intelligence',
description='A package for association analysis using the ECLAT method.',
long_description = description,
long_description_content_type = "text/markdown",
packages=['pyECLAT'],
install_requires=['pandas>=0.25.3', 'numpy>=1.17.4', 'tqdm>=4.41.1'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6']
)