-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 692 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
"""setup for pathfinder package."""
from setuptools import find_packages
from setuptools import setup
setup(
name="pathfinder",
description="pathfinder – a simpler os.walk",
long_description=open("README.rst").read(),
url="http://jkeyes.github.com/pathfinder/",
author="John Keyes",
author_email="john@keyes.ie",
version="1.0.1",
license="MIT License",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=find_packages(),
)