# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. try: from setuptools import setup except ImportError: from distutils.core import setup import rapport from rapport.setup import get_cmdclass, parse_requirements install_requires = parse_requirements("tools/install-requires.txt") tests_requires = parse_requirements("tools/test-requires.txt") setup( name="rapport", version=rapport.__version__, license="Apache-2.0", description="Work report generator for the lazy", long_description=open("README.rst").read(), author=rapport.__author__.rsplit(" ", 1)[0], author_email=rapport.__author__.rsplit(" ", 1)[1][1:-1], url="http://github.com/saschpe/rapport", scripts=["scripts/rapport"], packages=["rapport", "rapport.plugins"], package_data={ "rapport": [
def test_parse_requirements(self): install_reqs = parse_requirements(self.install_reqs_file) test_reqs = parse_requirements(self.test_reqs_file) self.assertEqual(install_reqs, self.install_reqs) self.assertEqual(test_reqs, self.test_reqs)
# Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. try: from setuptools import setup except ImportError: from distutils.core import setup import rapport from rapport.setup import get_cmdclass, parse_requirements install_requires = parse_requirements("requirements.txt") tests_requires = parse_requirements("test-requirements.txt") setup( name="rapport", version=rapport.__version__, license="Apache-2.0", description="Work report generator for the lazy", long_description=open("README.rst").read(), author=rapport.__author__.rsplit(" ", 1)[0], author_email=rapport.__author__.rsplit(" ", 1)[1][1:-1], url="http://github.com/saschpe/rapport", scripts=["scripts/rapport"], packages=["rapport", "rapport.plugins"], package_data={"rapport": ["templates/email/*", "templates/plugin/*",
# Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. try: from setuptools import setup except ImportError: from distutils.core import setup import rapport from rapport.setup import get_cmdclass, parse_requirements install_requires = parse_requirements("tools/install-requires.txt") tests_requires = parse_requirements("tools/test-requires.txt") setup( name="rapport", version=rapport.__version__, license="Apache-2.0", description="Work report generator for the lazy", long_description=open("README.rst").read(), author=rapport.__author__.rsplit(" ", 1)[0], author_email=rapport.__author__.rsplit(" ", 1)[1][1:-1], url="http://github.com/saschpe/rapport", scripts=["scripts/rapport"], packages=["rapport", "rapport.plugins"], package_data={"rapport": ["templates/email/*", "templates/plugin/*",