forked from petrobras/BibMon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 1 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Aug 4 20:03:43 2020
@author: afranio
"""
import setuptools
import os
with open('README.md') as f:
README = f.read()
requirements = os.path.dirname(os.path.realpath(__file__))+'/requirements.txt'
if os.path.isfile(requirements):
with open(requirements) as f:
install_requires = f.read().splitlines()
setuptools.setup(
author="BibMon developers",
author_email="cc-bibmon@petrobras.com.br",
name='bibmon',
description='Library with routines for data-driven process monitoring.',
license='Apache 2.0',
version='1.0.2',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/petrobras/bibmon',
packages=setuptools.find_packages(include=['bibmon','bibmon.*']),
include_package_data=True,
package_data={
'bibmon': ['real_process_data/*.csv','tennessee_eastman/*.dat'],
},
python_requires=">=3.9",
install_requires=install_requires
)