-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
32 lines (28 loc) · 1.01 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
import setuptools
def readme():
with open("README.md", "r") as fh:
return fh.read()
with open('requirements.txt') as fid:
INSTALL_REQUIRES = []
for line in fid.readlines():
if line == '' or line[0] == '#' or line[0].isspace():
continue
INSTALL_REQUIRES.append(line.strip())
setuptools.setup(
name="fcmpy",
version="0.0.1",
author="Samvel Mkhitaryan, Philippe J. Giabbanelli, Maciej Wozniak, Nanne K. de Vries, Rik Crutzen",
author_email="[email protected]",
description="Fuzzy Cognitive Maps for Behavior Change Interventions and Evaluation",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/SamvelMK/FcmBci.git",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8.1',
install_requires=INSTALL_REQUIRES
)