File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import click
2- from csskrt .bulmaCsskrt import BulmaCsskrt
3- from csskrt .bootstrapCsskrt import BootstrapCsskrt
2+ from . scripts .bulmaCsskrt import BulmaCsskrt
3+ from . scripts .bootstrapCsskrt import BootstrapCsskrt
44
55
66@click .command ()
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22import codecs
33
4+
45def long_description ():
56 with codecs .open ('README.md' , encoding = 'utf8' ) as f :
67 return f .read ()
78
89
910setup (
10- name = 'csskrt' ,
11+ name = 'csskrt-csskrt ' ,
1112 version = '0.1' ,
1213 packages = find_packages (),
1314 include_package_data = True ,
1415 license = 'MIT' ,
1516 long_description = long_description (),
1617 long_description_content_type = 'text/markdown' ,
1718 url = 'https://github.com/4d11/csskrt' ,
19+ keywords = 'css bootstrap bulma csskrt skrrt' ,
1820 entry_points = '''
1921 [console_scripts]
20- csskrt=main:freshify
22+ csskrt=csskrt. main:freshify
2123 ''' ,
22- )
24+ )
You can’t perform that action at this time.
0 commit comments