Skip to content

Commit be52795

Browse files
committed
Setup added
1 parent 2d7dac3 commit be52795

File tree

5 files changed

+32
-4
lines changed

5 files changed

+32
-4
lines changed

Code_Sleep_Python.egg-info/PKG-INFO

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Metadata-Version: 1.0
2+
Name: Code-Sleep-Python
3+
Version: 0.1
4+
Summary: UNKNOWN
5+
Home-page: UNKNOWN
6+
Author: UNKNOWN
7+
Author-email: UNKNOWN
8+
License: UNKNOWN
9+
Description: UNKNOWN
10+
Platform: UNKNOWN
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
setup.py
2+
Code_Sleep_Python.egg-info/PKG-INFO
3+
Code_Sleep_Python.egg-info/SOURCES.txt
4+
Code_Sleep_Python.egg-info/dependency_links.txt
5+
Code_Sleep_Python.egg-info/top_level.txt
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

setup.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
from setuptools import setup
22

33
setup(
4-
name='Code-Sleep-Python', # This is the name of your PyPI-package.
5-
version='0.1', # Update the version number for new releases
6-
scripts=['helloworld'] # The name of your scipt, and also the command you'll be using for calling it
7-
)
4+
name="code_sleep_python",
5+
description="Launch some awesome python projects",
6+
url="https://github.com/prateekiiest/Code-Sleep-Python",
7+
author="Prateek Chanda",
8+
author_email="[email protected]",
9+
license="MIT",
10+
packages=['python'],
11+
include_package_data=True,
12+
version="1.0.0",
13+
classifiers=[
14+
"Topic :: Utilities",
15+
"License :: OSI Approved :: MIT License",
16+
],
17+
)
18+
© 2018 GitHub, Inc.

0 commit comments

Comments
 (0)