-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (20 loc) · 878 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'FanFAIR',
packages = ['fanfair'],
version = '1.0.3',
description = 'FanFAIR, semi-automatic assessment of datasets fairness',
author = 'Chiara Gallese, Marco S. Nobile',
author_email = 'marco.nobile@unive.it',
url = 'https://github.com/aresio/FanFAIR', # use the URL to the github repo
keywords = ['fuzzy logic', 'dataset analysis', 'dataset fairness'], # arbitrary keywords
license='LICENSE.txt',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers = ['Programming Language :: Python :: 3.7'],
install_requires=[ 'numpy', 'simpful', 'scipy', 'pandas', 'matplotlib' ],
)