forked from dpath-maintainers/dpath-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.16 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
33
34
35
36
37
38
from distutils.core import setup
import dpath.version
import os
import sys
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read()
if __name__ == "__main__":
setup(
name="dpath",
url="https://www.github.com/akesterson/dpath-python",
version=dpath.version.VERSION,
description="Filesystem-like pathing and searching for dictionaries",
long_description=long_description,
author=("Caleb Case, "
"Andrew Kesterson"),
author_email="calebcase@gmail.com, andrew@aklabs.net",
license="MIT",
install_requires=[],
scripts=[],
packages=["dpath"],
data_files=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)