xstatic is in use in misc. projects since about 3 years and didn't require much changes / fixing yet, so guess it is stable. in case we have to do incompatible changes at some time, we'll raise the version number accordingly.
48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
# Copyright: 2011-2014 by the XStatic authors, see AUTHORS.txt for details.
|
|
# License: MIT license, see LICENSE.txt for details.
|
|
|
|
"""
|
|
XStatic - setup.py
|
|
|
|
Works with: setuptools
|
|
"""
|
|
|
|
import os.path
|
|
# The README.txt file should be written in reST so that PyPI can use
|
|
# it to generate your project's PyPI page.
|
|
readme_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
|
'README.txt')
|
|
with open(readme_path) as f:
|
|
long_description = f.read()
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='XStatic',
|
|
version='1.0.0',
|
|
description='XStatic base package with minimal support code',
|
|
long_description=long_description,
|
|
classifiers=[
|
|
'License :: OSI Approved :: MIT License',
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Libraries',
|
|
'Topic :: System :: Archiving :: Packaging',
|
|
'Topic :: System :: Installation/Setup',
|
|
'Topic :: System :: Software Distribution',
|
|
],
|
|
keywords="xstatic static file resource python packages setuptools pypi require",
|
|
author='Thomas Waldmann',
|
|
author_email='tw@waldmann-edv.de',
|
|
url='http:/bitbucket.org/thomaswaldmann/xstatic',
|
|
license='MIT license',
|
|
packages=find_packages(),
|
|
namespace_packages=['xstatic', 'xstatic.pkg', ],
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=[], # there should never be a dependency!
|
|
)
|
|
|