Skip to content
This repository was archived by the owner on Oct 27, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import platform

from setuptools import setup
from setuptools import find_packages, setup

# Configure the required packages and scripts to install, depending on
# Python version and OS.
Expand All @@ -34,9 +34,6 @@
REQUIRED_PACKAGES.append('simplejson')

_PROTORPC_VERSION = '0.12.0'
packages = [
'protorpc',
]

setup(
name='protorpc',
Expand All @@ -46,7 +43,7 @@
author='Google Inc.',
author_email='rafek@google.com',
# Contained modules and scripts.
packages=packages,
packages=find_packages(),
entry_points={
'console_scripts': CONSOLE_SCRIPTS,
},
Expand Down