-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81cc0df
commit 403a459
Showing
3 changed files
with
54 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,26 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import setup, find_packages | ||
|
||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name ='djangify', | ||
version ='1.0.0', | ||
author ='amartya', | ||
author_email ='[email protected]', | ||
url ='https://github.com/L4TTiCe/djangify', | ||
description ='A Python script that converts HTML Files / Templates to Django compatible HTML Templates.', | ||
long_description = long_description, | ||
long_description_content_type ="text/markdown", | ||
license ='MIT', | ||
packages = find_packages(), | ||
entry_points ={ | ||
'console_scripts': [ | ||
'djangify = djangify.djangify:main' | ||
] | ||
}, | ||
classifiers =[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
keywords ='djangify django templates', | ||
zip_safe = False | ||
) | ||
setup( | ||
name="djangify", | ||
version="1.0.0", | ||
author="amartya", | ||
author_email="[email protected]", | ||
url="https://github.com/L4TTiCe/djangify", | ||
description="A Python script that converts HTML Files / Templates to Django compatible HTML Templates.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
license="MIT", | ||
packages=find_packages(), | ||
entry_points={"console_scripts": ["djangify = djangify.djangify:main"]}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
keywords="djangify django templates", | ||
zip_safe=False, | ||
) |