-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
62 lines (53 loc) · 1.66 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import pathlib
from setuptools import setup, find_packages
from os import path
HERE = pathlib.Path(__file__).parent
PACKAGE_NAME = 'sanfis'
VERSION = '0.1.0'
AUTHOR = 'Gregor Lenhard'
AUTHOR_EMAIL = 'gregor.lenhard92@gmail.com'
URL = 'https://github.com/gregorLen/S-ANFIS-PyTorch'
LICENSE = 'MIT License'
DESCRIPTION = 'Implementation to the State-Adaptive Neurofuzzy Inference System (S-ANFIS) network'
LONG_DESC_TYPE = "text/markdown"
CLASSIFIERS = [
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
INSTALL_REQUIRES = [
'numpy',
'seaborn',
'pandas',
'matplotlib',
'tqdm',
'scikit-learn',
'tensorboard'
]
DEV_REQUIRES = {
"dev": ['pytest',
]
}
# Get the long description from the README file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
license=LICENSE,
author_email=AUTHOR_EMAIL,
url=URL,
install_requires=INSTALL_REQUIRES,
extras_require=DEV_REQUIRES,
packages=find_packages(),
py_modules=['sanfis', 'sanfis/datagenerators'],
# package_dir={'': 'sanfis'},
)