-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
from os import path
from re import sub
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
# remove emojiis
long_description = sub(":[a-z_]+:", "- ", long_description)
setup(
name = 'prune',
packages = ['prune'],
version = "0.0.1",
description = 'Trim Entries from a Python Dictionary',
long_description = long_description,
long_description_content_type='text/markdown',
author = 'Daniel J. Dufour',
author_email = 'daniel.j.dufour@gmail.com',
url = 'https://github.com/DanielJDufour/prune',
download_url = 'https://github.com/DanielJDufour/prune/tarball/download',
keywords = ['branch','dictionary','entry','prune','python','string','unpick'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Operating System :: OS Independent',
],
install_requires=[]
)