Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from setuptools import setup, find_namespace_packages
from xstatic.pkg import bootstrap as xs

# The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page.
# it to generate your project's PyPI page.
with open('README.txt') as f:
long_description = f.read()

Expand All @@ -19,10 +20,8 @@
license=xs.LICENSE,
url=xs.HOMEPAGE,
platforms=xs.PLATFORMS,
packages=find_packages(),
namespace_packages=['xstatic', 'xstatic.pkg', ],
packages=find_namespace_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[], # nothing! :)
# if you like, you MAY use the 'XStatic' package.
install_requires=[],
)
1 change: 0 additions & 1 deletion xstatic/__init__.py

This file was deleted.

1 change: 0 additions & 1 deletion xstatic/pkg/__init__.py

This file was deleted.

4 changes: 2 additions & 2 deletions xstatic/pkg/bootstrap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

VERSION = '5.3.8' # version of the packaged files, please use the upstream
# version number
BUILD = '0' # our package build number, so we can release new builds
# with fixes for xstatic stuff.
BUILD = '1' # our package build number, so we can release new builds
# with fixes for xstatic stuff.
PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi

DESCRIPTION = "%s %s (XStatic packaging standard)" % (DISPLAY_NAME, VERSION)
Expand Down