Skip to content

Commit

Permalink
Updated version, setup dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
4d11 committed Aug 31, 2018
1 parent ea7a753 commit f798faf
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
from setuptools import setup, find_packages
import codecs

import os

def long_description():
with codecs.open('README.md', encoding='utf8') as f:
here = os.path.dirname(os.path.abspath(__file__))
with codecs.open(os.path.join(here, 'README.md'), encoding='utf8') as f:
return f.read()


setup(
name='csskrt-csskrt',
version='0.1',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
license='MIT',
long_description=long_description(),
long_description_content_type='text/markdown',
# long_description=long_description(), #todo getting file error need to fix
author='4d11',
url='https://github.com/4d11/csskrt-csskrt',
keywords='css bootstrap bulma csskrt skrrt',
Expand All @@ -32,5 +32,9 @@ def long_description():
'Topic :: Software Development :: User Interfaces',
'Topic :: Text Processing :: Markup',
'Topic :: Utilities'
],
install_requires=[
'click',
'beautifulsoup4',
]
)

0 comments on commit f798faf

Please sign in to comment.