201f4fdcb4
This hasn't actually been released, so the build number should be 0, but there is a tag in the main repository for 1.6.50.1 so we need to mark this as build 2. Change-Id: I5f9efd8d3c4cc4d29d42d1d6de1552029f6cacbb
26 lines
735 B
Python
26 lines
735 B
Python
from setuptools import setup, find_packages
|
|
from xstatic.pkg import mdi as xs
|
|
|
|
# The README.txt file should be written in reST so that PyPI can use
|
|
# it to generate your project's PyPI page.
|
|
long_description = open('README.txt').read()
|
|
|
|
setup(
|
|
name=xs.PACKAGE_NAME,
|
|
version=xs.PACKAGE_VERSION,
|
|
description=xs.DESCRIPTION,
|
|
long_description=long_description,
|
|
classifiers=xs.CLASSIFIERS,
|
|
keywords=xs.KEYWORDS,
|
|
maintainer=xs.MAINTAINER,
|
|
maintainer_email=xs.MAINTAINER_EMAIL,
|
|
license=xs.LICENSE,
|
|
url=xs.HOMEPAGE,
|
|
platforms=xs.PLATFORMS,
|
|
packages=find_packages(),
|
|
namespace_packages=['xstatic', 'xstatic.pkg'],
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=[],
|
|
)
|