-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (39 loc) · 981 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
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
"""
politica_preventiva-pipeline: Pipeline politica_preventiva
"""
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name="politica_preventiva",
version='0.0.1',
description='Pipeline politica_preventiva',
long_description=long_description,
author_email='roberto.sancheza@sedesol.gob.mx',
license='GPL v3',
packages=find_packages(),
test_suite='tests',
install_requires=[
'numpy',
'pyyaml',
'pandas',
'scikit-learn',
'datetime',
'scipy',
'Click',
'boto3'
],
extra_require={
'test': ['mock']
},
entry_points = {
'console_scripts' : [
'politica_preventiva = politica_preventiva.scripts.cli:main',
]
},
zip_safe=False
)