mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
26 lines
687 B
Python
26 lines
687 B
Python
from setuptools import find_packages, setup
|
|
|
|
version = "0.1dev"
|
|
|
|
setup(
|
|
name="FSPkg",
|
|
version=version,
|
|
description="File system test package",
|
|
long_description="""\
|
|
File system test package""",
|
|
classifiers=[], # Get strings from https://pypi.org/pypi?%3Aaction=list_classifiers
|
|
keywords="pip tests",
|
|
author="pip",
|
|
author_email="pip@openplans.org",
|
|
url="http://pip.openplans.org",
|
|
license="",
|
|
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=[
|
|
# -*- Extra requirements: -*-
|
|
],
|
|
entry_points="""
|
|
# -*- Entry points: -*-
|
|
""",
|
|
)
|