summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAdam Hupp <adam@hupp.org>2021-01-15 16:34:09 -0800
committerAdam Hupp <adam@hupp.org>2021-01-15 16:34:09 -0800
commitfca071d6a4ee04fca4cafacd7041a76a32cc1a8d (patch)
tree77e265e048267c176a7e83a06ab6093692dfc8cb /setup.py
parent3ebdb93cbe5ded066c23b0555f509610287b4ffb (diff)
downloadpython-magic-fca071d6a4ee04fca4cafacd7041a76a32cc1a8d.tar.gz
bump to 0.4.20
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 5d279f2..e5df93a 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-from setuptools import setup
+import setuptools
import io
import os
@@ -12,16 +12,16 @@ def read(file_name):
encoding='utf-8') as f:
return f.read()
-setup(
+setuptools.setup(
name='python-magic',
description='File type identification using libmagic',
author='Adam Hupp',
author_email='adam@hupp.org',
url="http://github.com/ahupp/python-magic",
- version='0.4.19',
- py_modules=['magic'],
+ version='0.4.20',
long_description=read('README.md'),
long_description_content_type='text/markdown',
+ packages=setuptools.find_packages(),
keywords="mime magic file",
license="MIT",
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',