Test files deleted

This commit is contained in:
Özcan Oğuz 2020-08-24 11:53:32 +03:00
parent 79920d0ac1
commit bd467d6ca3
No known key found for this signature in database
GPG Key ID: 2D33E2BD3D975818
6 changed files with 0 additions and 36 deletions

View File

@ -1 +0,0 @@
FROM brunneis/python:3.7

View File

@ -1,3 +0,0 @@
#!/bin/bash
rm dist/*
python3 setup.py install

View File

@ -1,6 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from .package_name import *
__version__ = '0.0.1b0'

View File

@ -1,2 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

View File

@ -1,21 +0,0 @@
#!/bin/bash
read -ep "Package name: " PACKAGE
read -ep "Package description: " DESCRIPTION
read -ep "Package URL: " URL
echo $URL
read -ep "Author name [Rodrigo Martínez Castaño]: " AUTHOR
AUTHOR=${AUTHOR:-"Rodrigo Martínez Castaño"}
read -ep "Author email [rodrigo@martinez.gal]: " EMAIL
EMAIL=${EMAIL:-"rodrigo@martinez.gal"}
sed -i "s~package_name~$PACKAGE~" package_name/__init__.py
mv package_name/package_name.py package_name/$PACKAGE.py
mv package_name $PACKAGE
sed -i "s~package_name~$PACKAGE~g" setup.py
sed -i "s~description_value~$DESCRIPTION~g" setup.py
sed -i "s~url_value~$URL~g" setup.py
sed -i "s~author_value~$AUTHOR~g" setup.py
sed -i "s~email_value~$EMAIL~g" setup.py
rm rename.sh

View File

@ -1,3 +0,0 @@
#!/bin/bash
python3 setup.py bdist_wheel
twine upload dist/*.whl