2018-07-06 00:57:23 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2022-04-12 15:42:41 +00:00
|
|
|
# tractor: structured concurrent "actors".
|
2018-07-06 00:57:23 +00:00
|
|
|
#
|
2022-04-12 15:42:41 +00:00
|
|
|
# Copyright 2018-eternity Tyler Goodlet.
|
2018-07-06 00:57:23 +00:00
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2022-04-12 15:42:41 +00:00
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
2018-07-06 00:57:23 +00:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2022-04-12 15:42:41 +00:00
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-07-06 00:57:23 +00:00
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2021-02-21 22:47:06 +00:00
|
|
|
with open('docs/README.rst', encoding='utf-8') as f:
|
2018-07-06 00:57:23 +00:00
|
|
|
readme = f.read()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="tractor",
|
2022-01-21 18:05:26 +00:00
|
|
|
version='0.1.0a5.dev', # alpha zone
|
2021-02-26 04:51:53 +00:00
|
|
|
description='structured concurrrent "actors"',
|
2018-07-06 00:57:23 +00:00
|
|
|
long_description=readme,
|
2022-04-12 15:42:41 +00:00
|
|
|
license='AGPLv3',
|
2018-07-06 00:57:23 +00:00
|
|
|
author='Tyler Goodlet',
|
|
|
|
maintainer='Tyler Goodlet',
|
2019-04-28 14:41:24 +00:00
|
|
|
maintainer_email='jgbt@protonmail.com',
|
|
|
|
url='https://github.com/goodboy/tractor',
|
2019-11-16 14:58:06 +00:00
|
|
|
platforms=['linux', 'windows'],
|
2018-07-06 00:57:23 +00:00
|
|
|
packages=[
|
|
|
|
'tractor',
|
2022-01-29 19:30:39 +00:00
|
|
|
'tractor.experimental',
|
2021-10-16 15:30:44 +00:00
|
|
|
'tractor.trionics',
|
2018-11-26 19:16:29 +00:00
|
|
|
'tractor.testing',
|
2018-07-06 00:57:23 +00:00
|
|
|
],
|
2019-01-16 18:41:49 +00:00
|
|
|
install_requires=[
|
2021-07-02 15:56:14 +00:00
|
|
|
|
|
|
|
# trio related
|
2021-02-26 04:51:53 +00:00
|
|
|
'trio>0.8',
|
|
|
|
'async_generator',
|
2021-07-02 15:56:14 +00:00
|
|
|
'trio_typing',
|
|
|
|
|
|
|
|
# tooling
|
2021-06-11 20:20:35 +00:00
|
|
|
'tricycle',
|
|
|
|
'trio_typing',
|
|
|
|
|
2022-07-12 14:10:39 +00:00
|
|
|
# serialization
|
|
|
|
'msgpack>=1.0.3',
|
|
|
|
|
2021-07-01 13:41:23 +00:00
|
|
|
# tooling
|
2021-02-26 04:51:53 +00:00
|
|
|
'colorlog',
|
|
|
|
'wrapt',
|
|
|
|
'pdbpp',
|
2022-07-12 14:10:39 +00:00
|
|
|
# windows deps workaround for ``pdbpp``
|
|
|
|
# https://github.com/pdbpp/pdbpp/issues/498
|
|
|
|
# https://github.com/pdbpp/fancycompleter/issues/37
|
|
|
|
'pyreadline3 ; platform_system == "Windows"',
|
2021-07-01 13:41:23 +00:00
|
|
|
|
2019-12-10 03:56:13 +00:00
|
|
|
],
|
2021-07-01 13:41:23 +00:00
|
|
|
extras_require={
|
|
|
|
|
|
|
|
# serialization
|
2022-02-14 19:14:05 +00:00
|
|
|
'msgspec': ['msgspec >= "0.4.0"'],
|
2021-07-01 13:41:23 +00:00
|
|
|
|
|
|
|
},
|
2018-07-06 00:57:23 +00:00
|
|
|
tests_require=['pytest'],
|
2021-12-26 05:37:18 +00:00
|
|
|
python_requires=">=3.9",
|
2018-07-06 00:57:23 +00:00
|
|
|
keywords=[
|
2021-02-26 04:51:53 +00:00
|
|
|
'trio',
|
|
|
|
"async",
|
|
|
|
"concurrency",
|
|
|
|
"actor model",
|
|
|
|
"distributed",
|
|
|
|
'multiprocessing'
|
2018-07-06 00:57:23 +00:00
|
|
|
],
|
|
|
|
classifiers=[
|
2021-02-27 21:08:14 +00:00
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
2018-07-10 21:27:47 +00:00
|
|
|
"Framework :: Trio",
|
2022-04-12 15:42:41 +00:00
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
2018-07-06 00:57:23 +00:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
2019-11-16 14:58:06 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2021-02-26 04:51:53 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2018-07-10 21:27:47 +00:00
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Topic :: System :: Distributed Computing",
|
2018-07-06 00:57:23 +00:00
|
|
|
],
|
|
|
|
)
|