mini-syndicate-py/setup.py

25 lines
897 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(
name="mini-syndicate",
2019-09-11 14:09:40 +00:00
version="0.0.7",
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",
],
2019-06-23 12:15:36 +00:00
packages=["syndicate", "syndicate.mini"],
2018-11-20 19:45:27 +00:00
url="https://github.com/syndicate-lang/mini-syndicate-py",
description="Syndicate-like library for integrating Python with the Syndicate ecosystem",
install_requires=['websockets', 'preserves'],
python_requires=">=3.6, <4",
)