-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 774 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 774 Bytes
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
from setuptools import find_packages, setup
NAME = 'compranet'
DESCRIPTION = 'Análisis de las contrataciones del gobierno (Compranet)'
URL = 'https://github.com/opintel/como-identificar-focos-rojos-en-contrataciones-publicas'
EMAIL = 'raul.peralta@opi.la'
AUTHOR = 'Raul Peralta'
REQUIRED = [
'dask',
'distributed',
'feather-format',
'joblib',
'matplotlib',
'numpy',
'pandas',
'pytest',
'python-snappy',
'scikit-learn',
'seaborn',
'snappy'
]
setup(
name=NAME,
version='0.0.1',
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
package_dir={'': 'src'},
packages=['features', 'utils'],
install_requires=REQUIRED,
include_package_data=True,
license='GPL-3.0',
)