Skip to content

Commit 4ee56d6

Browse files
committed
Update setup script
1 parent b0c74f8 commit 4ee56d6

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1-
from distutils.core import setup
1+
import setuptools
22

3-
setup(
3+
with open('README.md', encoding='utf-8') as f:
4+
long_description = f.read()
5+
6+
setuptools.setup(
47
name='pyctor',
58
packages=['pyctor'],
69
version='0.0.1',
710
license='MIT',
811
description='Minimalistic implementation of an actor concurrency model powered by asyncio.',
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
914
author='Kuba Weimann',
1015
author_email='kuba.weimann@gmail.com',
1116
url='https://github.com/kweimann/pyctor',
17+
python_requires='>=3.7.3',
1218
)

0 commit comments

Comments
 (0)