We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c74f8 commit 4ee56d6Copy full SHA for 4ee56d6
1 file changed
setup.py
@@ -1,12 +1,18 @@
1
-from distutils.core import setup
+import setuptools
2
3
-setup(
+with open('README.md', encoding='utf-8') as f:
4
+ long_description = f.read()
5
+
6
+setuptools.setup(
7
name='pyctor',
8
packages=['pyctor'],
9
version='0.0.1',
10
license='MIT',
11
description='Minimalistic implementation of an actor concurrency model powered by asyncio.',
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
author='Kuba Weimann',
15
author_email='kuba.weimann@gmail.com',
16
url='https://github.com/kweimann/pyctor',
17
+ python_requires='>=3.7.3',
18
)
0 commit comments