File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44# using it
55
66
7- #!/usr/bin/env python
7+ # !/usr/bin/env python
88# -*- coding: utf8 -*-
99import os
1010
1111import setuptools
1212
13+
1314def 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+
2123extra_files = package_files ('wordstats/language_data/' )
2224
25+ with open ('README.md' ) as f :
26+ long_description = f .read ()
27+
2328setuptools .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" ,
You can’t perform that action at this time.
0 commit comments