Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Leipzig Machine Learning Group
conML
python
Commits
a62a51f1
Commit
a62a51f1
authored
4 years ago
by
dmt
Browse files
Options
Downloads
Patches
Plain Diff
Update setup.py and README.txt for PyPI.
parent
8e94909c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.txt
+14
-0
14 additions, 0 deletions
README.txt
setup.py
+23
-11
23 additions, 11 deletions
setup.py
with
37 additions
and
11 deletions
README.txt
0 → 100644
+
14
−
0
View file @
a62a51f1
# 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
This diff is collapsed.
Click to expand it.
setup.py
+
23
−
11
View file @
a62a51f1
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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment