-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 750 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (18 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf8') as f:
long_description = f.read()
setup(
name='Fancy_aggregations',
version='1.5.1',
description='A collection of aggregations, such as OWAs, Choquet and Sugeno integrals, etc.',
author='Javier Fumanal Idocin',
url='https://github.com/Fuminides/Fancy_aggregations',
author_email='javier.fumanal@unavarra.es',
packages=['Fancy_aggregations'], #same as name
install_requires=['numpy'], #external packages as dependencies
long_description=long_description,
long_description_content_type='text/markdown'
)