Skip to content

Commit

Permalink
v0.1.7 setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzofelletti committed Mar 22, 2022
1 parent 3a8f84b commit c3d8c75
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
from distutils.core import setup
from setuptools import setup

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='pyregexp',
packages=['pyregexp'],
version='0.1.6',
version='0.1.7',
license='MIT',
description='Simple regex library',
long_description=long_description,
long_description_content_type='text/markdown',
author='Lorenzo Felletti',
url='https://github.com/lorenzofelletti/pyregex',
download_url='https://github.com/lorenzofelletti/pyregex/archive/v0.1.6.tar.gz',
download_url='https://github.com/lorenzofelletti/pyregex/archive/v0.1.7.tar.gz',
keywords=['Regex', 'RegExp', 'Engine'],
install_requires=[],
classifiers=[
Expand Down

0 comments on commit c3d8c75

Please sign in to comment.