-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
35 lines (31 loc) · 1.05 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
import setuptools
long_description = """# Barfi
**Block and Link based graphical programming environment for performing simulations in Python.**
It provides a Streamlit component for a graphical programming environment to perform simulations.
"""
setuptools.setup(
name="barfi",
version="0.7.0",
author="Adithya Krishnan",
author_email="[email protected]",
description="Framework for a graphical programming environment.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/krish-adi/barfi",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"streamlit >= 0.63",
"networkx >= 2.6.2",
],
project_urls={
'Source': 'https://github.com/krish-adi/barfi',
},
)