Skip to content

Commit

Permalink
prepare package for transifex
Browse files Browse the repository at this point in the history
  • Loading branch information
kouk committed Apr 20, 2017
1 parent b56bf3f commit 15ab41d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 31 deletions.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1

[devpi:upload]
formats = bdist_wheel,sdist.tgz
34 changes: 4 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
Based entirely on Django's own ``setup.py``.
"""
import os
from distutils.command.install import INSTALL_SCHEMES
from distutils.core import setup
from setuptools import setup, find_packages

import tagging

Expand All @@ -23,32 +22,6 @@ def fullsplit(path, result=None):
return result
return fullsplit(head, [tail] + result)

# Tell distutils to put the data_files in platform-specific installation
# locations. See here for an explanation:
# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']

# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
tagging_dir = os.path.join(root_dir, 'tagging')
pieces = fullsplit(root_dir)
if pieces[-1] == '':
len_root_dir = len(pieces) - 1
else:
len_root_dir = len(pieces)

for dirpath, dirnames, filenames in os.walk(tagging_dir):
# Ignore dirnames that start with '.'
for i, dirname in enumerate(dirnames):
if dirname.startswith('.'): del dirnames[i]
if '__init__.py' in filenames:
packages.append('.'.join(fullsplit(dirpath)[len_root_dir:]))
elif filenames:
data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])


setup(
name = 'django-tagging',
Expand All @@ -57,8 +30,9 @@ def fullsplit(path, result=None):
author = 'Jonathan Buchanan',
author_email = '[email protected]',
url = 'http://code.google.com/p/django-tagging/',
packages = packages,
data_files = data_files,
packages=find_packages(),
include_package_data=True,

classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
Expand Down
2 changes: 1 addition & 1 deletion tagging/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 4, 0, "dev", 2)
VERSION = (0, 4, 0, "transifex", 1)



Expand Down

0 comments on commit 15ab41d

Please sign in to comment.