File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22import codecs
3-
3+ import os
44
55def long_description ():
6- with codecs .open ('README.md' , encoding = 'utf8' ) as f :
6+ here = os .path .dirname (os .path .abspath (__file__ ))
7+ with codecs .open (os .path .join (here , 'README.md' ), encoding = 'utf8' ) as f :
78 return f .read ()
89
910
1011setup (
1112 name = 'csskrt-csskrt' ,
12- version = '0.1' ,
13+ version = '0.0. 1' ,
1314 packages = find_packages (),
1415 include_package_data = True ,
1516 license = 'MIT' ,
16- long_description = long_description (),
17- long_description_content_type = 'text/markdown' ,
17+ # long_description=long_description(), #todo getting file error need to fix
1818 author = '4d11' ,
1919 url = 'https://github.com/4d11/csskrt-csskrt' ,
2020 keywords = 'css bootstrap bulma csskrt skrrt' ,
@@ -32,5 +32,9 @@ def long_description():
3232 'Topic :: Software Development :: User Interfaces' ,
3333 'Topic :: Text Processing :: Markup' ,
3434 'Topic :: Utilities'
35+ ],
36+ install_requires = [
37+ 'click' ,
38+ 'beautifulsoup4' ,
3539 ]
3640)
You can’t perform that action at this time.
0 commit comments