-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
import codecs
import os
def long_description():
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.0.3',
packages=find_packages(),
include_package_data=True,
license='MIT',
# 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',
entry_points='''
[console_scripts]
csskrt=csskrt.main:freshify
''',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: User Interfaces',
'Topic :: Text Processing :: Markup',
'Topic :: Utilities'
],
install_requires=[
'click',
'beautifulsoup4',
]
)