forked from lanalabs/PyLana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (31 loc) · 1.01 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
import io
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
DESCRIPTION = "Python API for LANA Process Mining"
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except FileNotFoundError:
long_description = DESCRIPTION
setup(name='pylana',
version='0.2.1',
description="Python API for LANA Process Mining",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/lanalabs/pylana',
author='Lana Labs GmbH',
author_email='[email protected]',
license='Apache2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'
],
install_requires=[
'requests',
'pandas',
],
packages=find_packages(),
)