Skip to content
Snippets Groups Projects
Commit a62a51f1 authored by dmt's avatar dmt
Browse files

Update setup.py and README.txt for PyPI.

parent 8e94909c
No related branches found
No related tags found
No related merge requests found
# C O N S T R U C T I V I S T__ __
# _____ ____ ____ / |/ // /
# / ___// __ \ / __ \ / /|_/ // /
# / /__ / /_/ // / / // / / // /___
# \___/ \____//_/ /_//_/ /_//_____/
# M A C H I N E L E A R N I N G
#
#
# A Project by
# Thomas Schmid | UNIVERSITÄT LEIPZIG
# www.constructivist.ml
#
# Code Author: Dmitrij Denisenko
# Licence: MIT
from os import mkdir
from os.path import expanduser, exists, join
from configparser import ConfigParser
from distutils.core import setup
from setuptools import find_packages
from os import mkdir
from os.path import expanduser, join, exists
import pathlib
from setuptools import find_packages, setup, Extension
HERE = pathlib.Path(__file__).parent
README = (HERE/"README.txt").read_text()
USER_HOME_DIR = expanduser("~")
CML_DIR_NAME = ".conML"
......@@ -44,15 +47,24 @@ def write_configs(config):
if not exists(CML_CONFIG_DIR):
create_cml_config_dir()
PACKAGES = find_packages()
setup(
name="conML",
version="0.1dev",
packages=PACKAGES,
packages=find_packages(),
version=0.31,
licence="MIT",
description="constructivist machine learning",
long_description=README,
long_description_content_type="text/plain",
data_files=[(CML_CONFIG_DIR, ["conML/static/settings.ini"]),
(CML_DEFAULT_LEARN_DIR, ["conML/static/toyset.csv"]),
("conML/static", ["conML/static/logging.ini"])]
("conML/static", ["conML/static/logging.ini"])],
author="Dmitrij Denisenko",
install_requires=[
"numpy",
"krippendorff",
"scikit-learn",
"scipy",
"pandas"
]
)
insert_default_settings_into_config_file()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment