forked from goodboy/tractor
Tweak version for release, add 3.9 tag
parent
a0981be1fa
commit
2f8dd0199d
22
setup.py
22
setup.py
|
@ -24,8 +24,8 @@ with open('docs/README.rst', encoding='utf-8') as f:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="tractor",
|
name="tractor",
|
||||||
version='0.1.0.alpha0',
|
version='0.1.0a0.dev0', # first ever alpha, dev release
|
||||||
description='A trionic actor model built on `multiprocessing` and `trio`',
|
description='structured concurrrent "actors"',
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
author='Tyler Goodlet',
|
author='Tyler Goodlet',
|
||||||
|
@ -38,14 +38,23 @@ setup(
|
||||||
'tractor.testing',
|
'tractor.testing',
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'msgpack', 'trio>0.8', 'async_generator', 'colorlog', 'wrapt',
|
'trio>0.8',
|
||||||
'trio_typing', 'pdbpp',
|
'msgpack',
|
||||||
|
'async_generator',
|
||||||
|
'colorlog',
|
||||||
|
'wrapt',
|
||||||
|
'trio_typing',
|
||||||
|
'pdbpp',
|
||||||
],
|
],
|
||||||
tests_require=['pytest'],
|
tests_require=['pytest'],
|
||||||
python_requires=">=3.7",
|
python_requires=">=3.7",
|
||||||
keywords=[
|
keywords=[
|
||||||
"async", "concurrency", "actor model", "distributed",
|
'trio',
|
||||||
'trio', 'multiprocessing'
|
"async",
|
||||||
|
"concurrency",
|
||||||
|
"actor model",
|
||||||
|
"distributed",
|
||||||
|
'multiprocessing'
|
||||||
],
|
],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
|
@ -57,6 +66,7 @@ setup(
|
||||||
"Programming Language :: Python :: 3 :: Only",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
"Intended Audience :: Science/Research",
|
"Intended Audience :: Science/Research",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"Topic :: System :: Distributed Computing",
|
"Topic :: System :: Distributed Computing",
|
||||||
|
|
Loading…
Reference in New Issue