Create the file for PyPi project.
Project description
Example Package
This is a simple example package. You can use Github-flavored Markdown to write your content.
#!/usr/bin/python
import os
'''
*os* and *os.path* modules include many functions to interact with the file system.
'''
import shutil
def create():
application = input("The name of application: ")
cwd = os.getcwd()+'/'+application
print(cwd)
os.mkdir(cwd)
os.chdir(cwd)
os.system("touch LICENSE")
os.system("touch README.md")
os.system("touch pyproject.toml")
cwd_1 = os.getcwd()+'/'+'src'
print(cwd_1)
os.mkdir(cwd_1)
os.chdir(cwd_1)
cwd_2 = os.getcwd()+'/'+application
os.mkdir(cwd_2)
os.chdir(cwd_2)
os.system("touch __init__.py")
os.system("touch main.py")
#create()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
create_pypi_files-0.0.3.tar.gz
(92.5 kB
view hashes)
Built Distribution
Close
Hashes for create_pypi_files-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19878538d27d9d74f919e7fc710751a3c6da8150e090111602f441631239e996 |
|
MD5 | f5305717d9513e60aa6e37b2efaacf62 |
|
BLAKE2b-256 | a08e3f9cdf1059b9cd030f061608ac81f73fe91be5e1cb74ce8ed48c2c6768ce |