-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.08 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.08 KB
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
# Copyright (c) 2010 Jean-Paul Calderone
# See LICENSE file for details.
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as f:
long_description = f.read()
setup(
name="filepath",
description="Object-oriented filesystem path representation.",
long_description=long_description,
version="0.2",
author="Twisted Matrix Labs",
author_email="twisted-python@twistedmatrix.com",
url="http://twistedmatrix.com/",
packages=["filepath", "filepath.test"],
install_requires=["zope.interface"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems",
])