Skip to content

Commit

Permalink
fix broken package + remove old unused bin/tripal
Browse files Browse the repository at this point in the history
  • Loading branch information
abretaud committed Aug 22, 2017
1 parent a3f99fd commit 8899312
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 31 deletions.
27 changes: 0 additions & 27 deletions bin/tripal

This file was deleted.

3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[wheel]
universal = 1

[metadata]
description-file = README.md
20 changes: 16 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
# http://bugs.python.org/issue15881#msg170215
from setuptools import setup, find_packages
import glob

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

subpackages = [x.replace('/', '.') for x in glob.glob('tripaille/commands/*') if not x.endswith('.py')]
subpackages += [x.replace('/', '.') for x in glob.glob('tripal/*') if not x.endswith('.py')]

setup(
name="tripal",
version='2.0.1',
version='2.0.2',
description="Tripal library",
author="Anthony Bretaudeau",
author_email="[email protected]",
url="https://github.com/galaxy-genome-annotation/python-tripal",
install_requires=['requests>=2.4.3', 'wrapt', 'click', 'pyyaml'],
packages=find_packages(),
install_requires=['requests>=2.4.3', 'wrapt', 'click', 'pyyaml', 'future'],
packages=[
'tripal',
'tripaille',
'tripaille.commands',
] + subpackages,
license='MIT',
platforms="Posix; MacOS X; Windows",
entry_points='''
Expand Down
Empty file added tripaille/commands/__init__.py
Empty file.

0 comments on commit 8899312

Please sign in to comment.