-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
37 lines (31 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import setuptools
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
with open("README.md") as f:
README = f.read()
lines = README.split('\n')
desc_lines = [line for line in lines if line[:2] != "[!"]
README = "\n".join(desc_lines)
setuptools.setup(
name="fuzzycmeans",
version="1.0.4",
author="Ahmad Alobaid",
author_email="[email protected]",
description="Fuzzy c-means according to the research paper by James C. Bezdek et. al",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/oeg-upm/fuzzy-c-means",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
],
install_requires=[
'numpy', 'six', 'bokeh'
],
)