-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 1010 Bytes
/
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
from setuptools import setup
with open('./README.md', 'r') as readme:
long_description = readme.read()
setup(
name='map-dictionary-keys',
version='1.0.0',
packages=['tests', 'map_dictionary_keys'],
url='https://github.com/melwell89/map-dictionary-keys',
author='Matt Elwell',
author_email='[email protected]',
description='A function to map the keys in a dictionary',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)