Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit cf15b2b

Browse files
committed
Make version 1.0.0
1 parent 707f88e commit cf15b2b

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# SmartRange
2-
A range parsing library
2+
3+
[![Documentation Status](https://readthedocs.org/projects/smartrange/badge/?version=latest)](https://smartrange.readthedocs.io/en/latest/?badge=latest)
4+
5+
View docs at https://smartrange.readthedocs.io/en/latest/.

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
from pathlib import Path
2+
13
from setuptools import setup
24

5+
this_directory = Path(__file__).parent
6+
long_description = (this_directory / "README.md").read_text()
7+
38
setup(
49
name='smart_range',
510
version='1.0.0',
@@ -9,5 +14,8 @@
914
author='PythonCoderAS',
1015
author_email='[email protected]',
1116
description='A class to easily deal with ranges.',
12-
extras_require={"docs": ["sphinx"]}
17+
extras_require={"docs": ["sphinx"]},
18+
long_description=long_description,
19+
long_description_content_type='text/markdown',
20+
python_requires='>=3.6'
1321
)

0 commit comments

Comments
 (0)