-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.11 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.11 KB
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
# -*- coding: utf-8 -*-
"""
Created on Tue Jul 9 14:04:30 2024
@author: git.metodologia@ine.es
"""
import pathlib
from setuptools import find_packages, setup
HERE = pathlib.Path(__file__).parent
VERSION = '0.1.0'
PACKAGE_NAME = 'codauto'
AUTHOR = 'Unidad de clasificaciones INE'
AUTHOR_EMAIL = 'git.metodologia@ine.es'
URL = 'https://github.com/AIML4OS/WP10_Cluster1_StatCodGen'
LICENSE = 'EUPL European Public License'
DESCRIPTION = 'Library for training an automatic coder'
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding='utf-8')
LONG_DESC_TYPE = "Long description"
INSTALL_REQUIRES = [
'pandas',
'numpy',
'pyreadstat',
'utils',
'fasttext-wheel',
'openpyxl',
'matplotlib',
'scikit-learn',
'nltk',
'pyreadstat',
'xlrd'
]
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
install_requires=INSTALL_REQUIRES,
license=LICENSE,
packages=find_packages(),
include_package_data=True
)