-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd9b89c
commit 3f25ad9
Showing
8 changed files
with
46 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__version__ = "0.3.1" | ||
__author__ = "Tomáš Mikula" | ||
__email__ = "mail@tomasmikula.cz" | ||
__license__ = 'MIT license' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,36 @@ | ||
#!/usr/bin/env python | ||
|
||
"""The setup script.""" | ||
|
||
import pathlib | ||
from setuptools import setup, find_packages | ||
from fcapsy import __version__, __author__, __email__, __license__ | ||
|
||
__author__ = 'Tomáš Mikula' | ||
__email__ = 'mail@tomasmikula.cz' | ||
__version__ = '0.3.0a1' | ||
__license__ = 'MIT license' | ||
|
||
readme = pathlib.Path('README.md').read_text(encoding='utf-8') | ||
|
||
history = pathlib.Path('HISTORY.md').read_text(encoding='utf-8') | ||
|
||
setup( | ||
name="fcapsy", | ||
version=__version__, | ||
author=__author__, | ||
author_email=__email__, | ||
python_requires='>=3.6', | ||
description="Experimental implementations of psychological phenomena (e.g. typicality, basic level) in FCA framework.", | ||
keywords="fca formal concept analysis psychology cognition typicality basic-level", | ||
license=__license__, | ||
url="https://github.com/mikulatomas/fcapsy", | ||
packages=find_packages(), | ||
python_requires=">=3.6", | ||
install_requires=["concepts>=0.9.2", "binsdpy>=0.1.1"], | ||
extras_require={ | ||
"test": ["pytest", "pytest-cov"], | ||
}, | ||
long_description=pathlib.Path("README.md").read_text(encoding="utf-8"), | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
description="Experimental implementations of psychological phenomena (e.g. typicality, basic level) in FCA framework", | ||
install_requires=[ | ||
'concepts' | ||
"Intended Audience :: Science/Research", | ||
'Intended Audience :: Developers', | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
extras_require={ | ||
'dev': ['tox>=3', 'flake8', 'pep8-naming', 'wheel', 'twine'], | ||
'test': ['pytest>=6', 'pytest-cov'], | ||
}, | ||
license=__license__, | ||
long_description=readme + '\n\n' + history, | ||
long_description_content_type='text/markdown', | ||
include_package_data=True, | ||
keywords='fca formal concept analysis psychology cognition typicality basic-level', | ||
name='fcapsy', | ||
packages=find_packages(include=['fcapsy', 'fcapsy.*']), | ||
url='https://github.com/mikulatomas/fcapsy', | ||
version=__version__, | ||
zip_safe=False, | ||
) |