8000 Added MANIFEST.in · tj-python/github-deploy@cc2af9a · GitHub
[go: up one dir, main page]

Skip to content

Commit cc2af9a

Browse files
committed
Added MANIFEST.in
1 parent 6a361a0 commit cc2af9a

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include *.py
2+
include LICENSE
3+
prune .github

commands/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import division
2+
13
import os
24
from setuptools import setup, find_packages
35

@@ -6,7 +8,7 @@
68
LONG_DESCRIPTION_TYPE = "text/markdown"
79

810
if os.path.isfile(README_PATH):
9-
with open(README_PATH, encoding="utf-8") as f:
11+
with open(README_PATH) as f:
1012
LONG_DESCRIPTION = f.read()
1113
else:
1214
LONG_DESCRIPTION = ""

0 commit comments

Comments
 (0)
0