Skip to content

Commit

Permalink
Packaging code
Browse files Browse the repository at this point in the history
  • Loading branch information
Aananya authored and Aananya committed Sep 4, 2019
1 parent e96eeab commit aecc111
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
17 changes: 17 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
MIT License
Copyright (c) 2018 YOUR NAME
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Empty file added README.md
Empty file.
3 changes: 1 addition & 2 deletions gluestring/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import main
__all__ = ["main"]
from gluestring.main import glue_it
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from distutils.core import setup
setup(
name='gluestring',
packages=['gluestring'],
version='0.1',
license='MIT',
description='Easy way to create template strings',
author='Aananya',
author_email='[email protected]',
url='https://github.com/aananya27/gluestring',
download_url='https://github.com/aananya27/gluestring/archive/v_01.tar.gz',
keywords=['template', 'string-formatter', 'util'],
install_requires=[
're',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7'
],
)

0 comments on commit aecc111

Please sign in to comment.