forked from drgrib/dotmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 738 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
version = '1.3.23',
name='dotmap',
packages=['dotmap'], # this must be the same as the name above
description='ordered, dynamically-expandable dot-access dictionary',
author='Chris Redford',
author_email='credford@gmail.com',
url='https://github.com/drgrib/dotmap', # use the URL to the github repo
download_url='https://github.com/drgrib/dotmap/tarball/1.0',
keywords=['dict', 'dot', 'map', 'order', 'ordered',
'ordereddict', 'access', 'dynamic'], # arbitrary keywords
classifiers=[],
long_description=long_description,
long_description_content_type="text/markdown",
)