Skip to content

Commit f798faf

Browse files
committed
Updated version, setup dependencies
1 parent ea7a753 commit f798faf

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

setup.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
from setuptools import setup, find_packages
22
import codecs
3-
3+
import os
44

55
def 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

1011
setup(
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
)

0 commit comments

Comments
 (0)