Skip to content

Commit 262ce27

Browse files
committed
Update description
1 parent 5e57c50 commit 262ce27

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
# using it
55

66

7-
#!/usr/bin/env python
7+
# !/usr/bin/env python
88
# -*- coding: utf8 -*-
99
import os
1010

1111
import setuptools
1212

13+
1314
def package_files(directory):
1415
paths = []
1516
for (path, directories, filenames) in os.walk(directory):
@@ -18,14 +19,19 @@ def package_files(directory):
1819
paths.append(os.path.join('..', path, filename))
1920
return paths
2021

22+
2123
extra_files = package_files('wordstats/language_data/')
2224

25+
with open('README.md') as f:
26+
long_description = f.read()
27+
2328
setuptools.setup(
2429
name="wordstats",
2530
packages=setuptools.find_packages(),
26-
version="1.0",
31+
version="1.0.1",
2732
license="MIT",
2833
description="Multilingual word frequency statistics for Python based on subtitles corpora",
34+
long_description=long_description,
2935
author="Mircea Lungu",
3036
author_email="me@mir.lu",
3137
url="https://github.com/zeeguu-ecosystem/Python-Wordstats",

0 commit comments

Comments
 (0)