Skip to content

Commit 0f038df

Browse files
authored
Add files via upload
1 parent 3d6f3cb commit 0f038df

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

create_setup.ipynb

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"metadata": {},
7+
"outputs": [],
8+
"source": [
9+
"#How to create a setup file to install and share a python program\n",
10+
"from distutils.core import setup"
11+
]
12+
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": null,
16+
"metadata": {},
17+
"outputs": [],
18+
"source": [
19+
"setup ( \n",
20+
" name = 'Program_Name',\n",
21+
" version = 'version_number',\n",
22+
" packages = ['program_name'],\n",
23+
" license = 'MIT',\n",
24+
" long_description = open('README.txt').read(),\n",
25+
")"
26+
]
27+
},
28+
{
29+
"cell_type": "code",
30+
"execution_count": null,
31+
"metadata": {},
32+
"outputs": [],
33+
"source": []
34+
}
35+
],
36+
"metadata": {
37+
"kernelspec": {
38+
"display_name": "Python 3",
39+
"language": "python",
40+
"name": "python3"
41+
},
42+
"language_info": {
43+
"codemirror_mode": {
44+
"name": "ipython",
45+
"version": 3
46+
},
47+
"file_extension": ".py",
48+
"mimetype": "text/x-python",
49+
"name": "python",
50+
"nbconvert_exporter": "python",
51+
"pygments_lexer": "ipython3",
52+
"version": "3.7.1"
53+
}
54+
},
55+
"nbformat": 4,
56+
"nbformat_minor": 2
57+
}

0 commit comments

Comments
 (0)