Skip to content

Commit fed54b4

Browse files
author
Ke Xie
committed
add pkg files
1 parent ab3cc6d commit fed54b4

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

PKG-INFO

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Metadata-Version: 1.0
2+
Name: easyfunc
3+
Version: 0.1
4+
Summary: Easy and simple functional programming style helper for python.
5+
Home-page: https://github.com/DiamondGo/easyfunc
6+
Author: Key
7+
Author-email: orangewar@hotmail.com
8+
License: BSD License
9+
Description: UNKNOWN
10+
Platform: UNKNOWN

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name = 'easyfunc',
5+
packages = ['easyfunc'],
6+
version = '0.1', # Ideally should be same as your GitHub release tag varsion
7+
description = 'Easy and simple functional programming style helper for python.',
8+
author = 'Key',
9+
url = 'https://github.com/DiamondGo/easyfunc',
10+
download_url = 'https://github.com/DiamondGo/easyfunc/archive/0.1.tar.gz',
11+
keywords = ['fp', 'python', 'functional'],
12+
classifiers = [],
13+
)

0 commit comments

Comments
 (0)