tractor/setup.py

92 lines
2.5 KiB
Python
Raw Normal View History

2018-07-06 00:57:23 +00:00
#!/usr/bin/env python
#
# tractor: a trionic actor model built on `multiprocessing` and `trio`
#
2020-08-13 15:55:03 +00:00
# Copyright (C) 2018-2020 Tyler Goodlet
2018-07-06 00:57:23 +00:00
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# 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
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
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",
2021-11-01 18:02:45 +00:00
version='0.1.0a3', # 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,
license='GPLv3',
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',
platforms=['linux', 'windows'],
2018-07-06 00:57:23 +00:00
packages=[
'tractor',
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',
# tooling
2021-02-26 04:51:53 +00:00
'colorlog',
'wrapt',
'pdbpp',
2021-07-02 15:56:14 +00:00
# serialization
'msgpack',
2019-12-10 03:56:13 +00:00
],
extras_require={
# serialization
2021-09-06 15:53:18 +00:00
'msgspec': ["msgspec >= 0.3.2'; python_version >= '3.9'"],
},
2018-07-06 00:57:23 +00:00
tests_require=['pytest'],
python_requires=">=3.8",
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",
2021-02-27 21:08:14 +00:00
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
2018-07-06 00:57:23 +00:00
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3 :: Only",
"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
],
)