Skip to content

Commit 86366f7

Browse files
committed
Project description to PyPI
1 parent 5360c62 commit 86366f7

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

3-
version = "0.0.4"
3+
version = "0.0.4.1"
44

5+
with open("README.md", "r", encoding="utf-8") as fh:
6+
long_description = fh.read()
57
setup(
68
name="raffiot",
7-
packages=["raffiot"],
9+
packages=find_packages(),
810
version=version,
911
license="Apache 2.0",
1012
description="Robust And Fast Functional IO Toolkit",
13+
long_description=long_description,
14+
long_description_content_type="text/markdown",
1115
author="chrilves",
1216
author_email="[email protected]",
1317
url="https://github.com/chrilves/raffiot.py",
1418
download_url=f"https://github.com/chrilves/raffiot.py/archive/v{version}.tar.gz",
15-
keywords=["IO", "MONAD", "FUNCTIONAL PROGRAMMING"],
19+
keywords=["IO", "MONAD", "FUNCTIONAL PROGRAMMING", "RESULT", "RESOURCE MANAGEMENT", "RAILWAY"],
1620
classifiers=[
1721
"Development Status :: 3 - Alpha", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
1822
"Intended Audience :: Developers",
@@ -21,6 +25,8 @@
2125
"Programming Language :: Python :: 3.7",
2226
"Programming Language :: Python :: 3.8",
2327
"Programming Language :: Python :: 3.9",
28+
"Operating System :: OS Independent"
2429
],
25-
install_requires=['typing-extensions']
30+
install_requires=['typing-extensions'],
31+
python_requires='>=3.6'
2632
)

0 commit comments

Comments
 (0)