forked from cognitum-octopus/cognipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.14 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
from setuptools import setup
from cognipy import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cognipy',
version=__version__,
author="Cognitum Services S.A.",
author_email="[email protected]",
description="CogniPy for Pandas, Semantic Tech Reasoner and Editor",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/cognitum-octopus/cognipy",
packages=['cognipy'],
include_package_data = True,
install_requires = ['pandas','pydot','ipywidgets','graphviz'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: C#",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
],
)