syndicate-py/setup.py

25 lines
876 B
Python
Raw Normal View History

2018-11-20 19:45:27 +00:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
2021-08-19 18:39:43 +00:00
name="syndicate-py",
version="0.1.0",
2018-11-20 19:45:27 +00:00
author="Tony Garnock-Jones",
author_email="tonyg@leastfixedpoint.com",
license="GNU General Public License v3 or later (GPLv3+)",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
],
2021-08-19 18:39:43 +00:00
packages=["syndicate"],
url="https://git.syndicate-lang.org/syndicate-lang/syndicate-py",
description="Syndicated Actor model and Syndicate network protocol for Python 3",
2018-11-20 19:45:27 +00:00
install_requires=['websockets', 'preserves'],
python_requires=">=3.6, <4",
)