We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a361a0 commit cc2af9aCopy full SHA for cc2af9a
3 files changed
MANIFEST.in
@@ -0,0 +1,3 @@
1
+include *.py
2
+include LICENSE
3
+prune .github
commands/__init__.py
@@ -0,0 +1 @@
+__path__ = __import__('pkgutil').extend_path(__path__, __name__)
setup.py
@@ -1,3 +1,5 @@
+from __future__ import division
+
import os
4
from setuptools import setup, find_packages
5
@@ -6,7 +8,7 @@
6
8
LONG_DESCRIPTION_TYPE = "text/markdown"
7
9
10
if os.path.isfile(README_PATH):
- with open(README_PATH, encoding="utf-8") as f:
11
+ with open(README_PATH) as f:
12
LONG_DESCRIPTION = f.read()
13
else:
14
LONG_DESCRIPTION = ""
0 commit comments