Skip to content

Commit

Permalink
packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
jianhao.chen committed Apr 17, 2019
1 parent 27bef77 commit 5def13f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages


def fread(filepath, skip_lines=0):
Expand All @@ -9,12 +9,12 @@ def fread(filepath, skip_lines=0):


setup(
name='GB2260',
name='GB2260-2',
version='0.4.1',
author='Jiangge Zhang',
author_email='[email protected]',
url='https://github.com/cn/GB2260.py',
packages=['gb2260'],
packages=find_packages(exclude=('tests', 'tests.*')),
description='The Python implementation for looking up the Chinese '
'administrative divisions.',
long_description=fread('README.rst', skip_lines=2),
Expand Down

0 comments on commit 5def13f

Please sign in to comment.