xstatic-angular/setup.py
Rob Cresswell 5a30bee80d Update with xstatic-release script
Change-Id: I85514e4afde528e72d8b2a44a79702427df449f3
2016-07-19 08:17:20 +01:00

18 lines
556 B
Python

from setuptools import setup, find_packages
# 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='XStatic-Angular',
summary="""Angular 1.4.10 (XStatic packaging standard)""",
description=long_description,
maintainer="Rob Cresswell",
maintainer_email='robert.cresswell@outlook.com',
use_scm_version=True,
setup_requires=['setuptools_scm', 'wheel'],
packages=find_packages(),
include_package_data=True
)